View Javadoc

1   package org.lcsim.geometry.compact.converter.lcdd.util;
2   
3   /**
4    *
5    * @author tonyj
6    */
7   public abstract class Field extends RefElement
8   {
9      /** Creates a new instance of Field */
10     public Field(String type, String name)
11     {
12        super(type,name);
13        setAttribute("lunit","mm");
14        setAttribute("funit","tesla");
15     }
16  }