View Javadoc

1   package org.lcsim.detector.material;
2   
3   import org.lcsim.detector.IObjectStore;
4   
5   /**
6    * 
7    * This is an interface to the global materials store.
8    * 
9    * @author Jeremy McCormick <jeremym@slac.stanford.edu>
10   * @version $Id: IMaterialStore.java,v 1.3 2010/04/14 18:24:53 jeremy Exp $
11   */
12  public interface IMaterialStore 
13  extends IObjectStore<IMaterial>
14  {
15  	public IMaterial get(String name);
16  }