View Javadoc

1   package org.lcsim.geometry.compact.converter.lcdd.util;
2   
3   import org.jdom.Element;
4   
5   /**
6    * This class represents a hit_processor element in LCDD.
7    * The usage of this child element on the sensitive detector is optional.
8    * The LCDD processor will assign a reasonable default if it is not set explicitly.
9    * 
10   * @author Jeremy McCormick
11   * @version $Id: $
12   */
13  public class HitsCollection extends Element {
14  
15      /**
16       * Class constructor.
17       * @param typeName The type attribute setting.
18       */
19      public HitsCollection(String name) {
20          super("hits_collection");
21          setAttribute("name", name);
22      }    
23  }