30 Double_t DriftGap, Double_t FTransferGap, Double_t STransferGap, Double_t InductionGap);
45 Double_t
GetXSize() {
return XMaxModule-XMinModule; }
46 Double_t
GetYSize() {
return YMaxModule-YMinModule; }
85 Double_t px, Double_t py, Double_t pz, Double_t signal, Int_t refID);
88 Double_t px, Double_t py, Double_t pz, Double_t signal, Int_t refID);
91 Double_t px, Double_t py, Double_t pz, Double_t signal, Int_t refID);
109 Bool_t
SearchIntersectionPoint(Double_t &x, Double_t &y, Double_t strip_pos_layerA, Double_t strip_pos_layerB, Int_t layerA_index, Int_t layerB_index);
118 void ResetRealPoints() { RealPointsX.clear(); RealPointsY.clear(); RealPointsMC.clear(); }
164 void DefineModuleBorders();
165 Double_t GetNumberOfClusters(Double_t beta, Double_t gamma, Double_t charge, Double_t p0, Double_t p1);
179 Double_t ZStartModulePosition;
181 Double_t DriftGapThickness;
182 Double_t FirstTransferGapThickness;
183 Double_t SecondTransferGapThickness;
184 Double_t InductionGapThickness;
185 Double_t ModuleThickness;
189 vector<BmnGemStripLayer> StripLayers;
191 UInt_t AvalancheGenerationSeed;
192 Double_t AvalancheRadius;
196 vector<Double_t> RealPointsX;
197 vector<Double_t> RealPointsY;
198 vector<Double_t> RealPointsMC;
200 vector<Double_t> IntersectionPointsX;
201 vector<Double_t> IntersectionPointsY;
202 vector<Double_t> IntersectionPointsXErrors;
203 vector<Double_t> IntersectionPointsYErrors;
205 vector<Int_t> IntersectionPoints_LowerLayerClusterSize;
206 vector<Int_t> IntersectionPoints_UpperLayerClusterSize;
208 vector<Double_t> IntersectionPoints_LowerLayerStripPosition;
209 vector<Double_t> IntersectionPoints_UpperLayerStripPosition;
211 vector<Double_t> IntersectionPoints_LowerLayerStripTotalSignal;
212 vector<Double_t> IntersectionPoints_UpperLayerStripTotalSignal;
214 vector<BmnMatch> IntersectionPointMatches;
215 vector<BmnMatch> IntersectionPointDigitNumberMatches;
217 vector<StripCluster> UpperClusters;
218 vector<StripCluster> LowerClusters;
221 vector<Double_t> PseudoIntersectionsX;
222 vector<Double_t> PseudoIntersectionsY;
223 vector<Double_t> PseudoIntersectionsXErrors;
224 vector<Double_t> PseudoIntersectionsYErrors;
226 vector<Int_t> PseudoIntersections_LowerLayerClusterSize;
227 vector<Int_t> PseudoIntersections_UpperLayerClusterSize;
229 vector<Double_t> PseudoIntersections_LowerLayerStripPosition;
230 vector<Double_t> PseudoIntersections_UpperLayerStripPosition;
232 vector<Double_t> PseudoIntersections_LowerLayerStripTotalSignal;
233 vector<Double_t> PseudoIntersections_UpperLayerStripTotalSignal;
235 vector<BmnMatch> PseudoIntersectionMatches;
236 vector<BmnMatch> PseudoIntersectionDigitNumberMatches;
238 vector<StripCluster> UpperClusters_PseudoIntersections;
239 vector<StripCluster> LowerClusters_PseudoIntersections;
260 CollPoint(Double_t _x, Double_t _y, Double_t _z) : x(_x), y(_y), z(_z) {}