View Javadoc

1   package org.lcsim.geometry.compact.converter.lcdd.util;
2   
3   /**
4    *
5    * @author tonyj
6    */
7   public class ProjectiveCylinder extends Segmentation
8   {
9      
10     /** Creates a new instance of ProjectiveCylinder */
11     public ProjectiveCylinder()
12     {
13        super("projective_cylinder");
14     }
15     public void setNTheta(int n)
16     {
17        setAttribute("ntheta",String.valueOf(n));
18     }
19     public void setNPhi(int n)
20     {
21        setAttribute("nphi",String.valueOf(n));
22     }   
23  }