CMS 3D CMS Logo

MaterialBudgetData.cc
Go to the documentation of this file.
2 
3 #include "G4Step.hh"
4 #include "G4Material.hh"
5 #include "G4EventManager.hh"
6 #include "G4Event.hh"
7 
9  //instantiate categorizer to assign an ID to volumes and materials
11  allStepsToTree = false;
12  isHGCal = false;
13  isMtd = false;
14  densityConvertionFactor = 6.24E18;
15 }
16 
18 
20 
21 void MaterialBudgetData::dataStartTrack(const G4Track* aTrack) {
22  const G4ThreeVector& dir = aTrack->GetMomentum();
23 
24  if (myMaterialBudgetCategorizer == nullptr) {
25  if (isHGCal) {
26  myMaterialBudgetCategorizer = std::make_unique<MaterialBudgetCategorizer>("HGCal");
27  } else if (isMtd) {
28  myMaterialBudgetCategorizer = std::make_unique<MaterialBudgetCategorizer>("Mtd");
29  } else {
30  myMaterialBudgetCategorizer = std::make_unique<MaterialBudgetCategorizer>("Tracker");
31  }
32  }
33 
34  theStepN = 0;
35  theTotalMB = 0;
36  theTotalIL = 0;
37  theEta = 0;
38  thePhi = 0;
39  theID = 0;
40  thePt = 0;
41  theEnergy = 0;
42  theMass = 0;
43 
44  theSupportMB = 0.f;
45  theSensitiveMB = 0.f;
46  theCoolingMB = 0.f;
47  theElectronicsMB = 0.f;
48  theOtherMB = 0.f;
49 
50  //HGCal
51  theAirMB = 0.f;
52  theCablesMB = 0.f;
53  theCopperMB = 0.f;
54  theH_ScintillatorMB = 0.f;
55  theLeadMB = 0.f;
56  theEpoxyMB = 0.f;
57  theKaptonMB = 0.f;
58  theAluminiumMB = 0.f;
59  theHGC_G10_FR4MB = 0.f;
60  theSiliconMB = 0.f;
61  theStainlessSteelMB = 0.f;
62  theWCuMB = 0.f;
63 
64  theSupportIL = 0.f;
65  theSensitiveIL = 0.f;
66  theCoolingIL = 0.f;
67  theElectronicsIL = 0.f;
68  theOtherIL = 0.f;
69 
70  //HGCal
71  theAirIL = 0.f;
72  theCablesIL = 0.f;
73  theCopperIL = 0.f;
74  theH_ScintillatorIL = 0.f;
75  theLeadIL = 0.f;
76  theEpoxyIL = 0.f;
77  theKaptonIL = 0.f;
78  theAluminiumIL = 0.f;
79  theHGC_G10_FR4IL = 0.f;
80  theSiliconIL = 0.f;
81  theStainlessSteelIL = 0.f;
82  theWCuIL = 0.f;
83 
88  theOtherFractionMB = 0.f;
89  //HGCal
90  theAirFractionMB = 0.f;
91  theCablesFractionMB = 0.f;
92  theCopperFractionMB = 0.f;
94  theLeadFractionMB = 0.f;
95  theEpoxyFractionMB = 0.f;
96  theKaptonFractionMB = 0.f;
101  theWCuFractionMB = 0.f;
102 
103  theSupportFractionIL = 0.f;
105  theCoolingFractionIL = 0.f;
107  theOtherFractionIL = 0.f;
108  //HGCal
109  theAirFractionIL = 0.f;
110  theCablesFractionIL = 0.f;
111  theCopperFractionIL = 0.f;
113  theLeadFractionIL = 0.f;
114  theEpoxyFractionIL = 0.f;
115  theKaptonFractionIL = 0.f;
118  theSiliconFractionIL = 0.f;
120  theWCuFractionIL = 0.f;
121 
122  theID = (int)(aTrack->GetDefinition()->GetPDGEncoding());
123  thePt = dir.perp();
124  if (dir.theta() != 0) {
125  theEta = dir.eta();
126  } else {
127  theEta = -99;
128  }
129  thePhi = dir.phi();
130  theEnergy = aTrack->GetTotalEnergy();
131  theMass = aTrack->GetDefinition()->GetPDGMass();
132 }
133 
134 void MaterialBudgetData::dataEndTrack(const G4Track* aTrack) {
135  LogDebug("MaterialBudget") << "MaterialBudgetData: [OVAL] MaterialBudget "
136  << G4EventManager::GetEventManager()->GetConstCurrentEvent()->GetEventID()
137  << " Eta:" << theEta << " Phi:" << thePhi << " TotalMB" << theTotalMB;
138 
139  LogDebug("MaterialBudget") << "MaterialBudgetData:" << theStepN << "Recorded steps ";
140 
141  if (!isHGCal) {
142  LogDebug("Material Budget") << "MaterialBudgetData: Radiation Length "
143  << G4EventManager::GetEventManager()->GetConstCurrentEvent()->GetEventID() << " Eta"
144  << theEta << " Phi" << thePhi << " TotalMB" << theTotalMB << " SUP " << theSupportMB
145  << " SEN " << theSensitiveMB << " CAB " << theCablesMB << " COL " << theCoolingMB
146  << " ELE " << theElectronicsMB << " other " << theOtherMB << " Air " << theAirMB;
147 
148  LogDebug("Material Budget") << "MaterialBudgetData: Interaction Length "
149  << G4EventManager::GetEventManager()->GetConstCurrentEvent()->GetEventID() << " Eta "
150  << theEta << " Phi " << thePhi << " TotalIL " << theTotalIL << " SUP " << theSupportIL
151  << " SEN " << theSensitiveIL << " CAB " << theCablesIL << " COL " << theCoolingIL
152  << " ELE " << theElectronicsIL << " other " << theOtherIL << " Air " << theAirIL
153  << std::endl;
154 
155  } else {
156  LogDebug("MaterialBudget") << "MaterialBudgetData: HGCal Material Budget: Radiation Length "
157  << G4EventManager::GetEventManager()->GetConstCurrentEvent()->GetEventID() << " Eta "
158  << theEta << " Phi " << thePhi << " TotaLMB" << theTotalMB << " theCopperMB "
159  << theCopperMB << " theH_ScintillatorMB " << theH_ScintillatorMB << " CAB "
160  << theCablesMB << " theLeadMB " << theLeadMB << " theEpoxyMB " << theEpoxyMB
161  << " theKaptonMB " << theKaptonMB << " theAluminiumMB " << theAluminiumMB
162  << " theHGC_G10_FR4MB " << theHGC_G10_FR4MB << " theSiliconMB " << theSiliconMB
163  << " theAirMB " << theAirMB << " theStainlessSteelMB " << theStainlessSteelMB
164  << " theWCuMB " << theWCuMB;
165 
166  LogDebug("MaterialBudget") << "MaterialBudgetData: HGCal Material Budget: Interaction Length "
167  << G4EventManager::GetEventManager()->GetConstCurrentEvent()->GetEventID() << " Eta "
168  << theEta << " Phi " << thePhi << " TotalIL " << theTotalIL << " theCopperIL "
169  << theCopperIL << " theH_ScintillatorIL " << theH_ScintillatorIL << " CAB "
170  << theCablesIL << " theLeadIL " << theLeadIL << " theEpoxyIL " << theEpoxyIL
171  << " theKaptonIL " << theKaptonIL << " theAluminiumIL " << theAluminiumIL
172  << " theHGC_G10_FR4IL " << theHGC_G10_FR4IL << " theSiliconIL " << theSiliconIL
173  << " Air " << theAirIL << " theStainlessSteelIL " << theStainlessSteelIL << " theWCuIL "
174  << theWCuIL << std::endl;
175  }
176 }
177 
178 void MaterialBudgetData::dataPerStep(const G4Step* aStep) {
179  assert(aStep);
180  G4StepPoint* prePoint = aStep->GetPreStepPoint();
181  G4StepPoint* postPoint = aStep->GetPostStepPoint();
182  assert(prePoint);
183  assert(postPoint);
184  G4Material* theMaterialPre = prePoint->GetMaterial();
185  assert(theMaterialPre);
186 
187  CLHEP::Hep3Vector prePos = prePoint->GetPosition();
188  CLHEP::Hep3Vector postPos = postPoint->GetPosition();
189 
190  G4double steplen = aStep->GetStepLength();
191 
192  G4double radlen = theMaterialPre->GetRadlen();
193  G4double intlen = theMaterialPre->GetNuclearInterLength();
194  G4double density = theMaterialPre->GetDensity() / densityConvertionFactor; // always g/cm3
195 
196  G4String materialName = theMaterialPre->GetName();
197 
198  LogDebug("MaterialBudget") << "MaterialBudgetData: Material " << materialName << " steplen " << steplen << " radlen "
199  << radlen << " mb " << steplen / radlen;
200 
201  G4String volumeName = aStep->GetPreStepPoint()->GetTouchable()->GetVolume(0)->GetLogicalVolume()->GetName();
202 
203  LogDebug("MaterialBudget") << "MaterialBudgetData: Volume " << volumeName << " Material " << materialName;
204 
205  // instantiate the categorizer
207  int volumeID = myMaterialBudgetCategorizer->volume(volumeName);
208  int materialID = myMaterialBudgetCategorizer->material(materialName);
209 
210  LogDebug("MaterialBudget") << "MaterialBudgetData: Volume ID " << volumeID << " Material ID " << materialID;
211 
212  // FIXME: Both volume ID and material ID are zeros, so this part is not executed leaving all
213  // values as zeros.
214 
215  if (!isHGCal) {
216  bool isCtgOk = !myMaterialBudgetCategorizer->x0fraction(materialName).empty() &&
217  !myMaterialBudgetCategorizer->l0fraction(materialName).empty() &&
218  (myMaterialBudgetCategorizer->x0fraction(materialName).size() == 7) /*7 Categories*/
219  && (myMaterialBudgetCategorizer->l0fraction(materialName).size() == 7);
220 
221  if (!isCtgOk) {
222  if (materialName.compare("Air") == 0) {
223  theAirFractionMB = 1.f;
224  theAirFractionIL = 1.f;
225  } else {
226  theOtherFractionMB = 1.f;
227  theOtherFractionIL = 1.f;
228  edm::LogWarning("MaterialBudget") << "MaterialBudgetData: Material forced to 'Other': " << materialName
229  << " in volume " << volumeName << ". Check Categorization.";
230  }
231  } else {
232  theSupportFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[0];
233  theSensitiveFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[1];
234  theCablesFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[2];
235  theCoolingFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[3];
236  theElectronicsFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[4];
237  theOtherFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[5];
238  theAirFractionMB = myMaterialBudgetCategorizer->x0fraction(materialName)[6];
239 
240  if (theOtherFractionMB > 0.f)
241  edm::LogWarning("MaterialBudget")
242  << "MaterialBudgetData: Material found with no category: " << materialName << " in volume " << volumeName;
243 
244  theSupportFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[0];
245  theSensitiveFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[1];
246  theCablesFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[2];
247  theCoolingFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[3];
248  theElectronicsFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[4];
249  theOtherFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[5];
250  theAirFractionIL = myMaterialBudgetCategorizer->l0fraction(materialName)[6];
251 
252  if (theOtherFractionIL > 0.f)
253  edm::LogWarning("MaterialBudget")
254  << "MaterialBudgetData: Material found with no category: " << materialName << " in volume " << volumeName;
255  }
256  } else { // isHGCal
257 
258  bool isHGCalx0fractionEmpty = myMaterialBudgetCategorizer->HGCalx0fraction(materialName).empty();
259  bool isHGCall0fractionEmpty = myMaterialBudgetCategorizer->HGCall0fraction(materialName).empty();
260 
261  if (isHGCalx0fractionEmpty && isHGCall0fractionEmpty) {
262  theOtherFractionMB = 1.f;
263  theOtherFractionIL = 1.f;
264 
265  edm::LogWarning("MaterialBudget") << "MaterialBudgetData: Material forced to 'Other': " << materialName
266  << " in volume " << volumeName;
267  } else {
268  theAirFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[0];
269  theCablesFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[1];
270  theCopperFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[2];
271  theH_ScintillatorFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[3];
272  theLeadFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[4];
273  theHGC_G10_FR4FractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[5];
274  theSiliconFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[6];
275  theStainlessSteelFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[7];
276  theWCuFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[8];
277  theOtherFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[9];
278  theEpoxyFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[10];
279  theKaptonFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[11];
280  theAluminiumFractionMB = myMaterialBudgetCategorizer->HGCalx0fraction(materialName)[12];
281 
282  if (theOtherFractionMB != 0)
283  // edm::LogWarning("MaterialBudget") << "MaterialBudgetData: Material found with no category: " << materialName
284  // << " in volume " << volumeName << std::endl;
285  std::cout << "MaterialBudgetData: Material found with no category: " << materialName << " in volume "
286  << volumeName << std::endl;
287 
288  theAirFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[0];
289  theCablesFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[1];
290  theCopperFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[2];
291  theH_ScintillatorFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[3];
292  theLeadFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[4];
293  theHGC_G10_FR4FractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[5];
294  theSiliconFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[6];
295  theStainlessSteelFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[7];
296  theWCuFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[8];
297  theOtherFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[9];
298  theEpoxyFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[10];
299  theKaptonFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[11];
300  theAluminiumFractionIL = myMaterialBudgetCategorizer->HGCall0fraction(materialName)[12];
301 
302  if (theOtherFractionIL != 0)
303  edm::LogWarning("MaterialBudget") << "MaterialBudgetData: Material found with no category " << materialName
304  << " in volume " << volumeName << std::endl;
305  }
306  }
307 
308  float dmb = steplen / radlen;
309  float dil = steplen / intlen;
310 
311  G4VPhysicalVolume* pv = aStep->GetPreStepPoint()->GetPhysicalVolume();
312  const G4VTouchable* t = aStep->GetPreStepPoint()->GetTouchable();
313  const G4ThreeVector& objectTranslation = t->GetTranslation();
314  const G4RotationMatrix* objectRotation = t->GetRotation();
315  const G4VProcess* interactionPre = prePoint->GetProcessDefinedStep();
316  const G4VProcess* interactionPost = postPoint->GetProcessDefinedStep();
317 
318  G4Track* track = aStep->GetTrack();
319  if (theStepN == 0)
320  LogDebug("MaterialBudget") << "MaterialBudgetData: Simulated Particle " << theID << "\tMass " << theMass
321  << " MeV/c2"
322  << "\tPt = " << thePt << " MeV/c"
323  << "\tEta = " << theEta << "\tPhi = " << thePhi << "\tEnergy = " << theEnergy << " MeV";
324 
325  //fill data per step
326  if (allStepsToTree) {
328  if (theStepN > MAXNUMBERSTEPS)
329  theStepN = MAXNUMBERSTEPS - 1;
330  theDmb[theStepN] = dmb;
331  theDil[theStepN] = dil;
337  //HGCal
350 
356  //HGCal
369 
370  theInitialX[theStepN] = prePos.x();
371  theInitialY[theStepN] = prePos.y();
372  theInitialZ[theStepN] = prePos.z();
373  theFinalX[theStepN] = postPos.x();
374  theFinalY[theStepN] = postPos.y();
375  theFinalZ[theStepN] = postPos.z();
376  theVolumeID[theStepN] = volumeID;
377  theVolumeName[theStepN] = volumeName;
378  theVolumeCopy[theStepN] = pv->GetCopyNo();
379  theVolumeX[theStepN] = objectTranslation.x();
380  theVolumeY[theStepN] = objectTranslation.y();
381  theVolumeZ[theStepN] = objectTranslation.z();
382  theVolumeXaxis1[theStepN] = objectRotation->xx();
383  theVolumeXaxis2[theStepN] = objectRotation->xy();
384  theVolumeXaxis3[theStepN] = objectRotation->xz();
385  theVolumeYaxis1[theStepN] = objectRotation->yx();
386  theVolumeYaxis2[theStepN] = objectRotation->yy();
387  theVolumeYaxis3[theStepN] = objectRotation->yz();
388  theVolumeZaxis1[theStepN] = objectRotation->zx();
389  theVolumeZaxis2[theStepN] = objectRotation->zy();
390  theVolumeZaxis3[theStepN] = objectRotation->zz();
391  theMaterialID[theStepN] = materialID;
392  theMaterialName[theStepN] = materialName;
393  theMaterialX0[theStepN] = radlen;
394  theMaterialLambda0[theStepN] = intlen;
396  theStepID[theStepN] = track->GetDefinition()->GetPDGEncoding();
397  theStepInitialPt[theStepN] = prePoint->GetMomentum().perp();
398  theStepInitialEta[theStepN] = prePoint->GetMomentum().eta();
399  theStepInitialPhi[theStepN] = prePoint->GetMomentum().phi();
400  theStepInitialEnergy[theStepN] = prePoint->GetTotalEnergy();
401  theStepInitialPx[theStepN] = prePoint->GetMomentum().x();
402  theStepInitialPy[theStepN] = prePoint->GetMomentum().y();
403  theStepInitialPz[theStepN] = prePoint->GetMomentum().z();
404  theStepInitialBeta[theStepN] = prePoint->GetBeta();
405  theStepInitialGamma[theStepN] = prePoint->GetGamma();
406  theStepInitialMass[theStepN] = prePoint->GetMass();
407  theStepFinalPt[theStepN] = postPoint->GetMomentum().perp();
408  theStepFinalEta[theStepN] = postPoint->GetMomentum().eta();
409  theStepFinalPhi[theStepN] = postPoint->GetMomentum().phi();
410  theStepFinalEnergy[theStepN] = postPoint->GetTotalEnergy();
411  theStepFinalPx[theStepN] = postPoint->GetMomentum().x();
412  theStepFinalPy[theStepN] = postPoint->GetMomentum().y();
413  theStepFinalPz[theStepN] = postPoint->GetMomentum().z();
414  theStepFinalBeta[theStepN] = postPoint->GetBeta();
415  theStepFinalGamma[theStepN] = postPoint->GetGamma();
416  theStepFinalMass[theStepN] = postPoint->GetMass();
417  int preProcType = -99;
418  int postProcType = -99;
419  if (interactionPre)
420  preProcType = interactionPre->GetProcessType();
421  theStepPreProcess[theStepN] = preProcType;
422  if (interactionPost)
423  postProcType = interactionPost->GetProcessType();
424  theStepPostProcess[theStepN] = postProcType;
425 
426  LogDebug("MaterialBudget") << "MaterialBudgetData: Step " << theStepN << "\tDelta MB = " << theDmb[theStepN]
427  << std::endl
428  << " Support " << theSupportDmb[theStepN] << " Sensitive " << theSensitiveDmb[theStepN]
429  << " Cables " << theCablesDmb[theStepN] << " Cooling " << theCoolingDmb[theStepN]
430  << " Electronics " << theElectronicsDmb[theStepN] << " Other " << theOtherDmb[theStepN]
431  << " Air " << theAirDmb[theStepN] << std::endl
432  << "\tDelta IL = " << theDil[theStepN] << std::endl
433  << " Support " << theSupportDil[theStepN] << " Sensitive " << theSensitiveDil[theStepN]
434  << " Cables " << theCablesDil[theStepN] << " Cooling " << theCoolingDil[theStepN]
435  << " Electronics " << theElectronicsDil[theStepN] << " Other " << theOtherDil[theStepN]
436  << " Air " << theAirDil[theStepN];
437 
438  if (interactionPre)
439  LogDebug("MaterialBudget") << "MaterialBudgetData: Process Pre " << interactionPre->GetProcessName() << " type "
440  << theStepPreProcess[theStepN] << " name "
441  << interactionPre->GetProcessTypeName(G4ProcessType(theStepPreProcess[theStepN]));
442  if (interactionPost)
443  LogDebug("MaterialBudget")
444  << "MaterialBudgetData: Process Post " << interactionPost->GetProcessName() << " type "
445  << theStepPostProcess[theStepN] << " name "
446  << interactionPost->GetProcessTypeName(G4ProcessType(theStepPostProcess[theStepN]))
447  << " Pre x = " << theInitialX[theStepN] << " y = " << theInitialY[theStepN]
448  << " z = " << theInitialZ[theStepN]
449  << " Polar Radius = " << sqrt(prePos.x() * prePos.x() + prePos.y() * prePos.y())
450  << " Pt = " << theStepInitialPt[theStepN] << " Energy = " << theStepInitialEnergy[theStepN] << " Final: "
451  << " Post x = " << theFinalX[theStepN] << " y = " << theFinalY[theStepN] << " z = " << theFinalZ[theStepN]
452  << " Polar Radius = " << sqrt(postPos.x() * postPos.x() + postPos.y() * postPos.y())
453  << " Pt = " << theStepFinalPt[theStepN] << " Energy = " << theStepFinalEnergy[theStepN] << std::endl
454  << " Volume " << volumeID << " name " << theVolumeName[theStepN] << " copy number " << theVolumeCopy[theStepN]
455  << " material " << theMaterialID[theStepN] << " " << theMaterialName[theStepN]
456  << " Density = " << theMaterialDensity[theStepN] << " g/cm3"
457  << " X0 = " << theMaterialX0[theStepN] << " mm"
458  << " Lambda0 = " << theMaterialLambda0[theStepN] << " mm" << std::endl
459  << " Particle " << theStepID[theStepN] << " Initial Pt = " << theStepInitialPt[theStepN] << " MeV/c"
460  << " eta = " << theStepInitialEta[theStepN] << " phi = " << theStepInitialPhi[theStepN]
461  << " Energy = " << theStepInitialEnergy[theStepN] << " MeV"
462  << " Mass = " << theStepInitialMass[theStepN] << " MeV/c2"
463  << " Beta = " << theStepInitialBeta[theStepN] << " Gamma = " << theStepInitialGamma[theStepN] << std::endl
464  << " Particle " << theStepID[theStepN] << " Final Pt = " << theStepFinalPt[theStepN] << " MeV/c"
465  << " eta = " << theStepFinalEta[theStepN] << " phi = " << theStepFinalPhi[theStepN]
466  << " Energy = " << theStepFinalEnergy[theStepN] << " MeV"
467  << " Mass = " << theStepFinalMass[theStepN] << " MeV/c2"
468  << " Beta = " << theStepFinalBeta[theStepN] << " Gamma = " << theStepFinalGamma[theStepN] << std::endl
469  << " Volume Centre x = " << theVolumeX[theStepN] << " y = " << theVolumeY[theStepN]
470  << " z = " << theVolumeZ[theStepN] << "Polar Radius = "
472  << std::endl
473  << " x axis = (" << theVolumeXaxis1[theStepN] << "," << theVolumeXaxis2[theStepN] << ","
474  << theVolumeXaxis3[theStepN] << ")" << std::endl
475  << " y axis = (" << theVolumeYaxis1[theStepN] << "," << theVolumeYaxis2[theStepN] << ","
476  << theVolumeYaxis3[theStepN] << ")" << std::endl
477  << " z axis = (" << theVolumeZaxis1[theStepN] << "," << theVolumeZaxis2[theStepN] << ","
478  << theVolumeZaxis3[theStepN] << ")" << std::endl
479  << " Secondaries" << std::endl;
480 
481  for (G4TrackVector::const_iterator iSec = aStep->GetSecondary()->begin(); iSec != aStep->GetSecondary()->end();
482  iSec++) {
483  LogDebug("MaterialBudget") << "MaterialBudgetData: tid " << (*iSec)->GetDefinition()->GetPDGEncoding()
484  << " created through process type " << (*iSec)->GetCreatorProcess()->GetProcessType()
485  << (*iSec)->GetCreatorProcess()->GetProcessTypeName(
486  G4ProcessType((*iSec)->GetCreatorProcess()->GetProcessType()));
487  }
488  }
489 
490  theTrkLen = aStep->GetTrack()->GetTrackLength();
491  thePVname = pv->GetName();
492  thePVcopyNo = pv->GetCopyNo();
493  theRadLen = radlen;
494  theIntLen = intlen;
495  theTotalMB += dmb;
496  theTotalIL += dil;
497 
502  theOtherMB += (dmb * theOtherFractionMB);
503 
504  //HGCal
505  theAirMB += (dmb * theAirFractionMB);
506  theCablesMB += (dmb * theCablesFractionMB);
507  theCopperMB += (dmb * theCopperFractionMB);
509  theLeadMB += (dmb * theLeadFractionMB);
510  theEpoxyMB += (dmb * theEpoxyFractionMB);
511  theKaptonMB += (dmb * theKaptonFractionMB);
516  theWCuMB += (dmb * theWCuFractionMB);
517 
522  theOtherIL += (dil * theOtherFractionIL);
523  //HGCal
524  theAirIL += (dil * theAirFractionIL);
525  theCablesIL += (dil * theCablesFractionIL);
526  theCopperIL += (dil * theCopperFractionIL);
528  theLeadIL += (dil * theLeadFractionIL);
529  theEpoxyIL += (dil * theEpoxyFractionIL);
530  theKaptonIL += (dil * theKaptonFractionIL);
535  theWCuIL += (dil * theWCuFractionIL);
536 
537  // rr
538 
539  theStepN++;
540 }
MaterialBudgetData::theAirDmb
std::array< float, MAXNUMBERSTEPS > theAirDmb
Definition: MaterialBudgetData.h:321
MaterialBudgetData::theCoolingIL
float theCoolingIL
Definition: MaterialBudgetData.h:278
MaterialBudgetData::theMaterialLambda0
std::array< float, MAXNUMBERSTEPS > theMaterialLambda0
Definition: MaterialBudgetData.h:371
MaterialBudgetData::theAirIL
float theAirIL
Definition: MaterialBudgetData.h:281
MaterialBudgetData::theSiliconMB
float theSiliconMB
Definition: MaterialBudgetData.h:271
MaterialBudgetData::theStepInitialEnergy
std::array< float, MAXNUMBERSTEPS > theStepInitialEnergy
Definition: MaterialBudgetData.h:378
MaterialBudgetData::theAluminiumIL
float theAluminiumIL
Definition: MaterialBudgetData.h:299
MaterialBudgetData::theLeadDmb
std::array< float, MAXNUMBERSTEPS > theLeadDmb
Definition: MaterialBudgetData.h:324
MaterialBudgetData::theLeadFractionMB
float theLeadFractionMB
Definition: MaterialBudgetData.h:256
MaterialBudgetData::theEpoxyDil
std::array< float, MAXNUMBERSTEPS > theEpoxyDil
Definition: MaterialBudgetData.h:344
HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11713
MaterialBudgetData::dataEndTrack
void dataEndTrack(const G4Track *aTrack)
Definition: MaterialBudgetData.cc:134
MaterialBudgetData::theCoolingMB
float theCoolingMB
Definition: MaterialBudgetData.h:248
MaterialBudgetData::theKaptonFractionMB
float theKaptonFractionMB
Definition: MaterialBudgetData.h:258
MaterialBudgetData::theCablesDmb
std::array< float, MAXNUMBERSTEPS > theCablesDmb
Definition: MaterialBudgetData.h:317
MaterialBudgetData::theStainlessSteelFractionIL
float theStainlessSteelFractionIL
Definition: MaterialBudgetData.h:292
MaterialBudgetData::theAluminiumMB
float theAluminiumMB
Definition: MaterialBudgetData.h:269
MaterialBudgetData::dataPerStep
void dataPerStep(const G4Step *aStep)
Definition: MaterialBudgetData.cc:178
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
MaterialBudgetData::theAluminiumDmb
std::array< float, MAXNUMBERSTEPS > theAluminiumDmb
Definition: MaterialBudgetData.h:327
MaterialBudgetData::theStepInitialMass
std::array< float, MAXNUMBERSTEPS > theStepInitialMass
Definition: MaterialBudgetData.h:384
MaterialBudgetData::theDmb
std::array< float, MAXNUMBERSTEPS > theDmb
Definition: MaterialBudgetData.h:314
MaterialBudgetData::theSensitiveFractionIL
float theSensitiveFractionIL
Definition: MaterialBudgetData.h:239
MaterialBudgetData::theVolumeZaxis2
std::array< float, MAXNUMBERSTEPS > theVolumeZaxis2
Definition: MaterialBudgetData.h:365
MaterialBudgetData::theH_ScintillatorFractionMB
float theH_ScintillatorFractionMB
Definition: MaterialBudgetData.h:255
MaterialBudgetData::theSupportFractionMB
float theSupportFractionMB
Definition: MaterialBudgetData.h:231
MaterialBudgetData::isHGCal
bool isHGCal
Definition: MaterialBudgetData.h:410
MaterialBudgetData::theSensitiveMB
float theSensitiveMB
Definition: MaterialBudgetData.h:246
MaterialBudgetData::theKaptonDmb
std::array< float, MAXNUMBERSTEPS > theKaptonDmb
Definition: MaterialBudgetData.h:326
MaterialBudgetData::theSensitiveDil
std::array< float, MAXNUMBERSTEPS > theSensitiveDil
Definition: MaterialBudgetData.h:335
MaterialBudgetData::theCoolingDmb
std::array< float, MAXNUMBERSTEPS > theCoolingDmb
Definition: MaterialBudgetData.h:318
gather_cfg.cout
cout
Definition: gather_cfg.py:144
MaterialBudgetData::theMaterialDensity
std::array< float, MAXNUMBERSTEPS > theMaterialDensity
Definition: MaterialBudgetData.h:372
MaterialBudgetData::theVolumeID
std::array< int, MAXNUMBERSTEPS > theVolumeID
Definition: MaterialBudgetData.h:352
MaterialBudgetData::theVolumeXaxis1
std::array< float, MAXNUMBERSTEPS > theVolumeXaxis1
Definition: MaterialBudgetData.h:358
MaterialBudgetData::theStepInitialBeta
std::array< float, MAXNUMBERSTEPS > theStepInitialBeta
Definition: MaterialBudgetData.h:382
cms::cuda::assert
assert(be >=bs)
MaterialBudgetData::theCopperFractionMB
float theCopperFractionMB
Definition: MaterialBudgetData.h:254
MaterialBudgetData::theH_ScintillatorIL
float theH_ScintillatorIL
Definition: MaterialBudgetData.h:295
MaterialBudgetData::theCablesFractionIL
float theCablesFractionIL
Definition: MaterialBudgetData.h:240
MaterialBudgetData::theMaterialName
std::array< std::string, MAXNUMBERSTEPS > theMaterialName
Definition: MaterialBudgetData.h:369
MaterialBudgetData::theOtherIL
float theOtherIL
Definition: MaterialBudgetData.h:280
MaterialBudgetData::theTotalMB
float theTotalMB
Definition: MaterialBudgetData.h:223
MaterialBudgetData::theInitialZ
std::array< double, MAXNUMBERSTEPS > theInitialZ
Definition: MaterialBudgetData.h:308
MaterialBudgetData::theWCuFractionMB
float theWCuFractionMB
Definition: MaterialBudgetData.h:263
MaterialBudgetData::theOtherDil
std::array< float, MAXNUMBERSTEPS > theOtherDil
Definition: MaterialBudgetData.h:339
MaterialBudgetData::theOtherDmb
std::array< float, MAXNUMBERSTEPS > theOtherDmb
Definition: MaterialBudgetData.h:320
MaterialBudgetData::theStepFinalBeta
std::array< float, MAXNUMBERSTEPS > theStepFinalBeta
Definition: MaterialBudgetData.h:392
MaterialBudgetData::theStepFinalPy
std::array< float, MAXNUMBERSTEPS > theStepFinalPy
Definition: MaterialBudgetData.h:390
MaterialBudgetData::theAluminiumDil
std::array< float, MAXNUMBERSTEPS > theAluminiumDil
Definition: MaterialBudgetData.h:346
MaterialBudgetData::theVolumeYaxis1
std::array< float, MAXNUMBERSTEPS > theVolumeYaxis1
Definition: MaterialBudgetData.h:361
MaterialBudgetData::theCopperDil
std::array< float, MAXNUMBERSTEPS > theCopperDil
Definition: MaterialBudgetData.h:341
MaterialBudgetData::theStepN
int theStepN
Definition: MaterialBudgetData.h:305
MaterialBudgetData::theAirFractionMB
float theAirFractionMB
Definition: MaterialBudgetData.h:237
MaterialBudgetData::theLeadIL
float theLeadIL
Definition: MaterialBudgetData.h:296
MaterialBudgetData::theOtherFractionIL
float theOtherFractionIL
Definition: MaterialBudgetData.h:243
MaterialBudgetData::theStainlessSteelIL
float theStainlessSteelIL
Definition: MaterialBudgetData.h:302
MaterialBudgetData::theSupportFractionIL
float theSupportFractionIL
Definition: MaterialBudgetData.h:238
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
MaterialBudgetData::densityConvertionFactor
double densityConvertionFactor
Definition: MaterialBudgetData.h:413
MaterialBudgetData::myMaterialBudgetCategorizer
std::unique_ptr< MaterialBudgetCategorizer > myMaterialBudgetCategorizer
Definition: MaterialBudgetData.h:404
MaterialBudgetData::allStepsToTree
bool allStepsToTree
Definition: MaterialBudgetData.h:409
MaterialBudgetData::theSensitiveIL
float theSensitiveIL
Definition: MaterialBudgetData.h:276
MaterialBudgetData::theStepFinalEta
std::array< float, MAXNUMBERSTEPS > theStepFinalEta
Definition: MaterialBudgetData.h:386
MaterialBudgetData::theVolumeYaxis2
std::array< float, MAXNUMBERSTEPS > theVolumeYaxis2
Definition: MaterialBudgetData.h:362
MaterialBudgetData::theHGC_G10_FR4MB
float theHGC_G10_FR4MB
Definition: MaterialBudgetData.h:270
MaterialBudgetData::theEpoxyIL
float theEpoxyIL
Definition: MaterialBudgetData.h:297
MaterialBudgetData::theVolumeX
std::array< float, MAXNUMBERSTEPS > theVolumeX
Definition: MaterialBudgetData.h:355
MaterialBudgetData::thePt
float thePt
Definition: MaterialBudgetData.h:227
MaterialBudgetData::thePhi
float thePhi
Definition: MaterialBudgetData.h:225
MaterialBudgetData::theStepID
std::array< int, MAXNUMBERSTEPS > theStepID
Definition: MaterialBudgetData.h:374
MaterialBudgetData::theSensitiveFractionMB
float theSensitiveFractionMB
Definition: MaterialBudgetData.h:232
MaterialBudgetData::theStepPostProcess
std::array< int, MAXNUMBERSTEPS > theStepPostProcess
Definition: MaterialBudgetData.h:396
MaterialBudgetData::theEpoxyFractionIL
float theEpoxyFractionIL
Definition: MaterialBudgetData.h:287
MaterialBudgetData::theEpoxyMB
float theEpoxyMB
Definition: MaterialBudgetData.h:267
MaterialBudgetData::theStepFinalEnergy
std::array< float, MAXNUMBERSTEPS > theStepFinalEnergy
Definition: MaterialBudgetData.h:388
MaterialBudgetData::theSiliconDmb
std::array< float, MAXNUMBERSTEPS > theSiliconDmb
Definition: MaterialBudgetData.h:329
MaterialBudgetData::theCopperDmb
std::array< float, MAXNUMBERSTEPS > theCopperDmb
Definition: MaterialBudgetData.h:322
MaterialBudgetData::theHGC_G10_FR4FractionIL
float theHGC_G10_FR4FractionIL
Definition: MaterialBudgetData.h:290
MaterialBudgetData::theTotalIL
float theTotalIL
Definition: MaterialBudgetData.h:274
MaterialBudgetData::dataStartTrack
void dataStartTrack(const G4Track *aTrack)
Definition: MaterialBudgetData.cc:21
MaterialBudgetData::theCablesDil
std::array< float, MAXNUMBERSTEPS > theCablesDil
Definition: MaterialBudgetData.h:336
MaterialBudgetData::theWCuDil
std::array< float, MAXNUMBERSTEPS > theWCuDil
Definition: MaterialBudgetData.h:350
MaterialBudgetData::theElectronicsIL
float theElectronicsIL
Definition: MaterialBudgetData.h:279
MaterialBudgetData::theVolumeCopy
std::array< int, MAXNUMBERSTEPS > theVolumeCopy
Definition: MaterialBudgetData.h:354
MaterialBudgetData::theVolumeName
std::array< std::string, MAXNUMBERSTEPS > theVolumeName
Definition: MaterialBudgetData.h:353
MaterialBudgetData::theStepInitialPhi
std::array< float, MAXNUMBERSTEPS > theStepInitialPhi
Definition: MaterialBudgetData.h:377
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
MaterialBudgetData::theCopperIL
float theCopperIL
Definition: MaterialBudgetData.h:294
MaterialBudgetData::theSiliconFractionMB
float theSiliconFractionMB
Definition: MaterialBudgetData.h:261
MaterialBudgetData::theInitialX
std::array< double, MAXNUMBERSTEPS > theInitialX
Definition: MaterialBudgetData.h:306
MaterialBudgetData::theID
int theID
Definition: MaterialBudgetData.h:228
MaterialBudgetData::theCoolingFractionIL
float theCoolingFractionIL
Definition: MaterialBudgetData.h:241
MaterialBudgetData::theCoolingFractionMB
float theCoolingFractionMB
Definition: MaterialBudgetData.h:234
MaterialBudgetData::theH_ScintillatorDmb
std::array< float, MAXNUMBERSTEPS > theH_ScintillatorDmb
Definition: MaterialBudgetData.h:323
MaterialBudgetData::theStepInitialGamma
std::array< float, MAXNUMBERSTEPS > theStepInitialGamma
Definition: MaterialBudgetData.h:383
MaterialBudgetData::theHGC_G10_FR4IL
float theHGC_G10_FR4IL
Definition: MaterialBudgetData.h:300
MaterialBudgetData::theElectronicsDil
std::array< float, MAXNUMBERSTEPS > theElectronicsDil
Definition: MaterialBudgetData.h:338
MaterialBudgetData::theAirDil
std::array< float, MAXNUMBERSTEPS > theAirDil
Definition: MaterialBudgetData.h:340
MaterialBudgetData::theElectronicsDmb
std::array< float, MAXNUMBERSTEPS > theElectronicsDmb
Definition: MaterialBudgetData.h:319
MaterialBudgetData::theH_ScintillatorDil
std::array< float, MAXNUMBERSTEPS > theH_ScintillatorDil
Definition: MaterialBudgetData.h:342
MaterialBudgetData::theSensitiveDmb
std::array< float, MAXNUMBERSTEPS > theSensitiveDmb
Definition: MaterialBudgetData.h:316
MaterialBudgetData::~MaterialBudgetData
~MaterialBudgetData()
MaterialBudgetData::theVolumeZ
std::array< float, MAXNUMBERSTEPS > theVolumeZ
Definition: MaterialBudgetData.h:357
MaterialBudgetData::theSiliconIL
float theSiliconIL
Definition: MaterialBudgetData.h:301
MaterialBudgetData::MaterialBudgetData
MaterialBudgetData()
Definition: MaterialBudgetData.cc:8
MaterialBudgetData::theMaterialX0
std::array< float, MAXNUMBERSTEPS > theMaterialX0
Definition: MaterialBudgetData.h:370
MaterialBudgetData::theCablesFractionMB
float theCablesFractionMB
Definition: MaterialBudgetData.h:233
MaterialBudgetData::theElectronicsFractionIL
float theElectronicsFractionIL
Definition: MaterialBudgetData.h:242
MaterialBudgetData::theVolumeXaxis2
std::array< float, MAXNUMBERSTEPS > theVolumeXaxis2
Definition: MaterialBudgetData.h:359
MaterialBudgetData::theAirFractionIL
float theAirFractionIL
Definition: MaterialBudgetData.h:244
MaterialBudgetData::theAluminiumFractionIL
float theAluminiumFractionIL
Definition: MaterialBudgetData.h:289
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
MaterialBudgetData::theMaterialID
std::array< int, MAXNUMBERSTEPS > theMaterialID
Definition: MaterialBudgetData.h:368
MaterialBudgetData::theLeadMB
float theLeadMB
Definition: MaterialBudgetData.h:266
MaterialBudgetData::theIntLen
float theIntLen
Definition: MaterialBudgetData.h:407
MaterialBudgetData::thePVcopyNo
int thePVcopyNo
Definition: MaterialBudgetData.h:402
MaterialBudgetData::theAluminiumFractionMB
float theAluminiumFractionMB
Definition: MaterialBudgetData.h:259
MaterialBudgetData::theStainlessSteelFractionMB
float theStainlessSteelFractionMB
Definition: MaterialBudgetData.h:262
MaterialBudgetData::theStepFinalPt
std::array< float, MAXNUMBERSTEPS > theStepFinalPt
Definition: MaterialBudgetData.h:385
MaterialBudgetData::theStainlessSteelMB
float theStainlessSteelMB
Definition: MaterialBudgetData.h:272
MaterialBudgetData::theRadLen
float theRadLen
Definition: MaterialBudgetData.h:406
MaterialBudgetData::theElectronicsMB
float theElectronicsMB
Definition: MaterialBudgetData.h:249
MaterialBudgetData::theVolumeZaxis3
std::array< float, MAXNUMBERSTEPS > theVolumeZaxis3
Definition: MaterialBudgetData.h:366
MaterialBudgetData::theKaptonIL
float theKaptonIL
Definition: MaterialBudgetData.h:298
MaterialBudgetData::theVolumeY
std::array< float, MAXNUMBERSTEPS > theVolumeY
Definition: MaterialBudgetData.h:356
createfilelist.int
int
Definition: createfilelist.py:10
MetAnalyzer.pv
def pv(vc)
Definition: MetAnalyzer.py:7
MaterialBudgetData::theStainlessSteelDmb
std::array< float, MAXNUMBERSTEPS > theStainlessSteelDmb
Definition: MaterialBudgetData.h:330
MaterialBudgetData::theH_ScintillatorMB
float theH_ScintillatorMB
Definition: MaterialBudgetData.h:265
MaterialBudgetData::thePVname
std::string thePVname
Definition: MaterialBudgetData.h:400
MaterialBudgetData::theStepInitialPy
std::array< float, MAXNUMBERSTEPS > theStepInitialPy
Definition: MaterialBudgetData.h:380
MaterialBudgetData::theKaptonDil
std::array< float, MAXNUMBERSTEPS > theKaptonDil
Definition: MaterialBudgetData.h:345
MaterialBudgetData::theSupportDil
std::array< float, MAXNUMBERSTEPS > theSupportDil
Definition: MaterialBudgetData.h:334
MaterialBudgetData::MAXNUMBERSTEPS
static constexpr int MAXNUMBERSTEPS
Definition: MaterialBudgetData.h:221
MaterialBudgetData::theAirMB
float theAirMB
Definition: MaterialBudgetData.h:251
MaterialBudgetData::theHGC_G10_FR4Dmb
std::array< float, MAXNUMBERSTEPS > theHGC_G10_FR4Dmb
Definition: MaterialBudgetData.h:328
MaterialBudgetData::SetAllStepsToTree
void SetAllStepsToTree()
Definition: MaterialBudgetData.cc:19
MaterialBudgetData::theOtherFractionMB
float theOtherFractionMB
Definition: MaterialBudgetData.h:236
MaterialBudgetData::theEpoxyFractionMB
float theEpoxyFractionMB
Definition: MaterialBudgetData.h:257
MaterialBudgetData::theEpoxyDmb
std::array< float, MAXNUMBERSTEPS > theEpoxyDmb
Definition: MaterialBudgetData.h:325
MaterialBudgetData::theHGC_G10_FR4Dil
std::array< float, MAXNUMBERSTEPS > theHGC_G10_FR4Dil
Definition: MaterialBudgetData.h:347
MaterialBudgetData::theCopperFractionIL
float theCopperFractionIL
Definition: MaterialBudgetData.h:284
MaterialBudgetData::theVolumeZaxis1
std::array< float, MAXNUMBERSTEPS > theVolumeZaxis1
Definition: MaterialBudgetData.h:364
MaterialBudgetData::theStepInitialPx
std::array< float, MAXNUMBERSTEPS > theStepInitialPx
Definition: MaterialBudgetData.h:379
MaterialBudgetData::theStepInitialPt
std::array< float, MAXNUMBERSTEPS > theStepInitialPt
Definition: MaterialBudgetData.h:375
MaterialBudgetData::theDil
std::array< float, MAXNUMBERSTEPS > theDil
Definition: MaterialBudgetData.h:333
MaterialBudgetData.h
MaterialBudgetData::theSupportMB
float theSupportMB
Definition: MaterialBudgetData.h:245
MaterialBudgetData::theKaptonFractionIL
float theKaptonFractionIL
Definition: MaterialBudgetData.h:288
MaterialBudgetData::theSupportDmb
std::array< float, MAXNUMBERSTEPS > theSupportDmb
Definition: MaterialBudgetData.h:315
MaterialBudgetData::theSupportIL
float theSupportIL
Definition: MaterialBudgetData.h:275
MaterialBudgetData::theCoolingDil
std::array< float, MAXNUMBERSTEPS > theCoolingDil
Definition: MaterialBudgetData.h:337
MaterialBudgetData::theStepFinalPx
std::array< float, MAXNUMBERSTEPS > theStepFinalPx
Definition: MaterialBudgetData.h:389
MaterialBudgetData::theLeadDil
std::array< float, MAXNUMBERSTEPS > theLeadDil
Definition: MaterialBudgetData.h:343
MaterialBudgetData::theEnergy
float theEnergy
Definition: MaterialBudgetData.h:229
MaterialBudgetData::theOtherMB
float theOtherMB
Definition: MaterialBudgetData.h:250
MaterialBudgetData::theWCuIL
float theWCuIL
Definition: MaterialBudgetData.h:303
MaterialBudgetData::isMtd
bool isMtd
Definition: MaterialBudgetData.h:411
MaterialBudgetData::theCablesMB
float theCablesMB
Definition: MaterialBudgetData.h:247
MaterialBudgetData::theStepFinalPhi
std::array< float, MAXNUMBERSTEPS > theStepFinalPhi
Definition: MaterialBudgetData.h:387
MaterialBudgetData::theWCuFractionIL
float theWCuFractionIL
Definition: MaterialBudgetData.h:293
MaterialBudgetData::theKaptonMB
float theKaptonMB
Definition: MaterialBudgetData.h:268
MaterialBudgetData::theStepInitialPz
std::array< float, MAXNUMBERSTEPS > theStepInitialPz
Definition: MaterialBudgetData.h:381
MaterialBudgetData::theStepFinalGamma
std::array< float, MAXNUMBERSTEPS > theStepFinalGamma
Definition: MaterialBudgetData.h:393
MaterialBudgetData::theLeadFractionIL
float theLeadFractionIL
Definition: MaterialBudgetData.h:286
MaterialBudgetData::theSiliconFractionIL
float theSiliconFractionIL
Definition: MaterialBudgetData.h:291
MaterialBudgetData::theInitialY
std::array< double, MAXNUMBERSTEPS > theInitialY
Definition: MaterialBudgetData.h:307
MaterialBudgetData::theStepFinalPz
std::array< float, MAXNUMBERSTEPS > theStepFinalPz
Definition: MaterialBudgetData.h:391
MaterialBudgetData::theVolumeXaxis3
std::array< float, MAXNUMBERSTEPS > theVolumeXaxis3
Definition: MaterialBudgetData.h:360
MaterialBudgetData::theStepPreProcess
std::array< int, MAXNUMBERSTEPS > theStepPreProcess
Definition: MaterialBudgetData.h:395
MaterialBudgetData::theCopperMB
float theCopperMB
Definition: MaterialBudgetData.h:264
MaterialBudgetData::theFinalZ
std::array< double, MAXNUMBERSTEPS > theFinalZ
Definition: MaterialBudgetData.h:312
MaterialBudgetData::theHGC_G10_FR4FractionMB
float theHGC_G10_FR4FractionMB
Definition: MaterialBudgetData.h:260
submitPVValidationJobs.t
string t
Definition: submitPVValidationJobs.py:644
MaterialBudgetData::theStainlessSteelDil
std::array< float, MAXNUMBERSTEPS > theStainlessSteelDil
Definition: MaterialBudgetData.h:349
MaterialBudgetData::theMass
float theMass
Definition: MaterialBudgetData.h:230
MaterialBudgetData::theCablesIL
float theCablesIL
Definition: MaterialBudgetData.h:277
MaterialBudgetData::theFinalY
std::array< double, MAXNUMBERSTEPS > theFinalY
Definition: MaterialBudgetData.h:311
MaterialBudgetData::theEta
float theEta
Definition: MaterialBudgetData.h:224
MaterialBudgetData::theSiliconDil
std::array< float, MAXNUMBERSTEPS > theSiliconDil
Definition: MaterialBudgetData.h:348
MaterialBudgetData::theStepInitialEta
std::array< float, MAXNUMBERSTEPS > theStepInitialEta
Definition: MaterialBudgetData.h:376
MaterialBudgetData::theTrkLen
float theTrkLen
Definition: MaterialBudgetData.h:398
MaterialBudgetData::theStepFinalMass
std::array< float, MAXNUMBERSTEPS > theStepFinalMass
Definition: MaterialBudgetData.h:394
MaterialBudgetData::theWCuDmb
std::array< float, MAXNUMBERSTEPS > theWCuDmb
Definition: MaterialBudgetData.h:331
MaterialBudgetData::theFinalX
std::array< double, MAXNUMBERSTEPS > theFinalX
Definition: MaterialBudgetData.h:310
fastSimProducer_cff.density
density
Definition: fastSimProducer_cff.py:61
MaterialBudgetData::theH_ScintillatorFractionIL
float theH_ScintillatorFractionIL
Definition: MaterialBudgetData.h:285
DeadROC_duringRun.dir
dir
Definition: DeadROC_duringRun.py:23
MaterialBudgetData::theVolumeYaxis3
std::array< float, MAXNUMBERSTEPS > theVolumeYaxis3
Definition: MaterialBudgetData.h:363
MaterialBudgetData::theElectronicsFractionMB
float theElectronicsFractionMB
Definition: MaterialBudgetData.h:235
MaterialBudgetData::theWCuMB
float theWCuMB
Definition: MaterialBudgetData.h:273