1 package org.lcsim.geometry.compact.converter;
2
3
4 public class SiTrackerModuleComponentParameters
5 {
6 String materialName;
7 double thickness;
8 boolean sensitive;
9 int componentNumber;
10 String vis;
11
12 public SiTrackerModuleComponentParameters(double thickness, String materialName, int componentNumber, boolean sensitive, String vis)
13 {
14 this.thickness = thickness;
15 this.materialName = materialName;
16 this.sensitive = sensitive;
17 this.componentNumber = componentNumber;
18 this.vis = vis;
19 }
20
21 public double getThickness()
22 {
23 return thickness;
24 }
25
26 public String getMaterialName()
27 {
28 return materialName;
29 }
30
31 public boolean isSensitive()
32 {
33 return sensitive;
34 }
35
36 public int getComponentNumber()
37 {
38 return componentNumber;
39 }
40
41 public String getVis()
42 {
43 return vis;
44 }
45 }