View Javadoc

1   package org.lcsim.geometry.compact.converter.lcdd;
2   
3   import org.jdom.Element;
4   import org.jdom.JDOMException;
5   import org.lcsim.geometry.compact.Field;
6   import org.lcsim.geometry.compact.converter.lcdd.util.LCDD;
7   
8   /**
9    *
10   * @author tonyj
11   */
12  abstract class LCDDField extends Field
13  {
14     
15     /** Creates a new instance of LCDDField */
16     public LCDDField(Element node)
17     {
18        super(node);
19     }
20     abstract void addToLCDD(LCDD lcdd) throws JDOMException;
21  }