View Javadoc

1   package org.lcsim.geometry.compact.converter.lcdd.util;
2   
3   /**
4    *
5    * @author tonyj
6    */
7   public class NonprojectiveCylinder extends Segmentation
8   {
9      
10     /** Creates a new instance of NonprojectiveCylinder */
11     public NonprojectiveCylinder()
12     {
13        super("nonprojective_cylinder");
14     }
15     public void setGridSizeZ(double gsz)
16     {
17        setAttribute("grid_size_z",String.valueOf(gsz));
18     }
19     public void setGridSizePhi(double gsp)
20     {
21        setAttribute("grid_size_phi",String.valueOf(gsp));
22     }   
23  }