CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
MaterialBudgetCategorizer Class Reference

#include <MaterialBudgetCategorizer.h>

Public Member Functions

std::vector< float > l0fraction (std::string s)
 
int material (std::string s)
 
 MaterialBudgetCategorizer ()
 
int volume (std::string s)
 
std::vector< float > x0fraction (std::string s)
 

Private Member Functions

void buildCategoryMap (std::string theMaterialFileName, std::map< std::string, std::vector< float > > &theMap)
 
void buildMaps ()
 

Private Attributes

std::map< std::string, std::vector< float > > theL0Map
 
std::map< std::string, int > theMaterialMap
 
std::map< std::string, int > theVolumeMap
 
std::map< std::string, std::vector< float > > theX0Map
 

Detailed Description

Definition at line 15 of file MaterialBudgetCategorizer.h.

Constructor & Destructor Documentation

MaterialBudgetCategorizer::MaterialBudgetCategorizer ( )

Definition at line 19 of file MaterialBudgetCategorizer.cc.

Member Function Documentation

void MaterialBudgetCategorizer::buildCategoryMap ( std::string  theMaterialFileName,
std::map< std::string, std::vector< float > > &  theMap 
)
private

Definition at line 130 of file MaterialBudgetCategorizer.cc.

References cuy::col, gather_cfg::cout, Exception, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by l0fraction().

130  {
131  // const G4MaterialTable* matTable = G4Material::GetMaterialTable();
132  // G4int matSize = matTable->size();
133 
134  std::ifstream theMaterialFile(theMaterialFileName);
135  if (!theMaterialFile)
136  cms::Exception("LogicError") <<" File not found " << theMaterialFileName;
137 
138  // fill everything as "other"
139  float sup,sen,cab,col,ele,oth,air;
140  sup=sen=cab=col=ele=0.;
141  oth=1.;
142  air=0;
143 
144  //
145  std::string materialName;
146  while(theMaterialFile) {
147  theMaterialFile >> materialName;
148  theMaterialFile >> sup >> sen >> cab >> col >> ele;
149  oth = 0.000;
150  air = 0.000;
151  theMap[materialName].clear(); // clear before re-filling
152  theMap[materialName].push_back(sup); // sup
153  theMap[materialName].push_back(sen); // sen
154  theMap[materialName].push_back(cab); // cab
155  theMap[materialName].push_back(col); // col
156  theMap[materialName].push_back(ele); // ele
157  theMap[materialName].push_back(oth); // oth
158  theMap[materialName].push_back(air); // air
159  cout << " material " << materialName << " filled "
160  << " SUP " << sup
161  << " SEN " << sen
162  << " CAB " << cab
163  << " COL " << col
164  << " ELE " << ele
165  << " OTH " << oth
166  << " AIR " << air
167  << endl;
168  }
169 
170 }
col
Definition: cuy.py:1009
void MaterialBudgetCategorizer::buildMaps ( )
private

Definition at line 24 of file MaterialBudgetCategorizer.cc.

References cuy::col, gather_cfg::cout, edm::FileInPath::fullPath(), cuy::ii, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by l0fraction().

25 {
26  //----- Build map volume name - volume index
27  G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
28  G4LogicalVolumeStore::iterator ite;
29  int ii = 0;
30  for (ite = lvs->begin(); ite != lvs->end(); ite++) {
31  theVolumeMap[(*ite)->GetName()] = ii++;
32  }
33 
34  //----- Build map material name - volume index
35  const G4MaterialTable* matTable = G4Material::GetMaterialTable();
36  G4int matSize = matTable->size();
37  for( ii = 0; ii < matSize; ii++ ) {
38  theMaterialMap[ (*matTable)[ii]->GetName()] = ii+1;
39  }
40 
41  // rr
42 
43  //----- Build map material name
44  for( int ii = 0; ii < matSize; ii++ ) {
45  float sup,sen,cab,col,ele,oth,air;
46  sup=sen=cab=col=ele=0.;
47  oth=1.;
48  air=0;
49  cout << " material " << (*matTable)[ii]->GetName() << " prepared"
50  << endl;
51  if((*matTable)[ii]->GetName()=="Air"
52  ||
53  (*matTable)[ii]->GetName()=="Vacuum"
54  ) {
55  air=1.000;
56  oth=0.000;
57  }
58  // actually this class does not work if there are spaces into material names --> Recover material properties
59  if((*matTable)[ii]->GetName()=="Carbon fibre str.") {
60  sup=1.000;
61  oth=0.000;
62  }
63  // X0
64  theX0Map[ (*matTable)[ii]->GetName() ].push_back(sup); // sup
65  theX0Map[ (*matTable)[ii]->GetName() ].push_back(sen); // sen
66  theX0Map[ (*matTable)[ii]->GetName() ].push_back(cab); // cab
67  theX0Map[ (*matTable)[ii]->GetName() ].push_back(col); // col
68  theX0Map[ (*matTable)[ii]->GetName() ].push_back(ele); // ele
69  theX0Map[ (*matTable)[ii]->GetName() ].push_back(oth); // oth
70  theX0Map[ (*matTable)[ii]->GetName() ].push_back(air); // air
71  // L0
72  theL0Map[ (*matTable)[ii]->GetName() ].push_back(sup); // sup
73  theL0Map[ (*matTable)[ii]->GetName() ].push_back(sen); // sen
74  theL0Map[ (*matTable)[ii]->GetName() ].push_back(cab); // cab
75  theL0Map[ (*matTable)[ii]->GetName() ].push_back(col); // col
76  theL0Map[ (*matTable)[ii]->GetName() ].push_back(ele); // ele
77  theL0Map[ (*matTable)[ii]->GetName() ].push_back(oth); // oth
78  theL0Map[ (*matTable)[ii]->GetName() ].push_back(air); // air
79  }
80  //
81 
82  //----- Build map material name - X0 contributes
83  cout << endl << endl << "MaterialBudgetCategorizer::Fill X0 Map" << endl;
84  std::string theMaterialX0FileName = edm::FileInPath("Validation/Geometry/data/trackerMaterials.x0").fullPath();
85  buildCategoryMap(theMaterialX0FileName, theX0Map);
86  //----- Build map material name - L0 contributes
87  cout << endl << endl << "MaterialBudgetCategorizer::Fill L0 Map" << endl;
88  std::string theMaterialL0FileName = edm::FileInPath("Validation/Geometry/data/trackerMaterials.l0").fullPath();
89  buildCategoryMap(theMaterialL0FileName, theL0Map);
90  // summary of all the materials loaded
91  cout << endl << endl << "MaterialBudgetCategorizer::Material Summary --------" << endl;
92  G4EmCalculator calc;
93  for( ii = 0; ii < matSize; ii++ ) {
94  // edm::LogInfo("MaterialBudgetCategorizer")
95  cout << " material " << (*matTable)[ii]->GetName()
96  << endl
97  << "\t density = " << G4BestUnit((*matTable)[ii]->GetDensity(),"Volumic Mass")
98  << endl
99  << "\t X0 = " << (*matTable)[ii]->GetRadlen() << " mm"
100  << endl
101  << "\t Energy threshold for photons for 100 mm range = "
102  << G4BestUnit(calc.ComputeEnergyCutFromRangeCut(100, G4String("gamma"), (*matTable)[ii]->GetName()) , "Energy")
103  << endl
104  << " SUP " << theX0Map[ (*matTable)[ii]->GetName() ][0]
105  << " SEN " << theX0Map[ (*matTable)[ii]->GetName() ][1]
106  << " CAB " << theX0Map[ (*matTable)[ii]->GetName() ][2]
107  << " COL " << theX0Map[ (*matTable)[ii]->GetName() ][3]
108  << " ELE " << theX0Map[ (*matTable)[ii]->GetName() ][4]
109  << " OTH " << theX0Map[ (*matTable)[ii]->GetName() ][5]
110  << " AIR " << theX0Map[ (*matTable)[ii]->GetName() ][6]
111  << endl
112  << "\t Lambda0 = " << (*matTable)[ii]->GetNuclearInterLength() << " mm"
113  << endl
114  << " SUP " << theL0Map[ (*matTable)[ii]->GetName() ][0]
115  << " SEN " << theL0Map[ (*matTable)[ii]->GetName() ][1]
116  << " CAB " << theL0Map[ (*matTable)[ii]->GetName() ][2]
117  << " COL " << theL0Map[ (*matTable)[ii]->GetName() ][3]
118  << " ELE " << theL0Map[ (*matTable)[ii]->GetName() ][4]
119  << " OTH " << theL0Map[ (*matTable)[ii]->GetName() ][5]
120  << " AIR " << theL0Map[ (*matTable)[ii]->GetName() ][6]
121  << endl;
122  if( theX0Map[ (*matTable)[ii]->GetName() ][5] == 1 || theL0Map[ (*matTable)[ii]->GetName() ][5] == 1 )
123  std::cout << "WARNING: material with no category: " << (*matTable)[ii]->GetName() << std::endl;
124  }
125  //
126  // rr
127 
128 }
std::map< std::string, int > theVolumeMap
std::map< std::string, std::vector< float > > theX0Map
void buildCategoryMap(std::string theMaterialFileName, std::map< std::string, std::vector< float > > &theMap)
ii
Definition: cuy.py:589
std::map< std::string, std::vector< float > > theL0Map
col
Definition: cuy.py:1009
std::string fullPath() const
Definition: FileInPath.cc:197
std::map< std::string, int > theMaterialMap
std::vector<float> MaterialBudgetCategorizer::l0fraction ( std::string  s)
inline
int MaterialBudgetCategorizer::material ( std::string  s)
inline

Definition at line 21 of file MaterialBudgetCategorizer.h.

References alignCSCRings::s, and theMaterialMap.

Referenced by MaterialBudgetData::dataPerStep().

21 {return theMaterialMap[s];}
std::map< std::string, int > theMaterialMap
int MaterialBudgetCategorizer::volume ( std::string  s)
inline

Definition at line 20 of file MaterialBudgetCategorizer.h.

References alignCSCRings::s, and theVolumeMap.

Referenced by MaterialBudgetData::dataPerStep().

20 {return theVolumeMap[s];}
std::map< std::string, int > theVolumeMap
std::vector<float> MaterialBudgetCategorizer::x0fraction ( std::string  s)
inline

Definition at line 23 of file MaterialBudgetCategorizer.h.

References alignCSCRings::s, and theX0Map.

Referenced by MaterialBudgetData::dataPerStep().

23 {return theX0Map[s];}
std::map< std::string, std::vector< float > > theX0Map

Member Data Documentation

std::map<std::string,std::vector<float> > MaterialBudgetCategorizer::theL0Map
private

Definition at line 32 of file MaterialBudgetCategorizer.h.

Referenced by l0fraction().

std::map<std::string,int> MaterialBudgetCategorizer::theMaterialMap
private

Definition at line 29 of file MaterialBudgetCategorizer.h.

Referenced by material().

std::map<std::string,int> MaterialBudgetCategorizer::theVolumeMap
private

Definition at line 29 of file MaterialBudgetCategorizer.h.

Referenced by volume().

std::map<std::string,std::vector<float> > MaterialBudgetCategorizer::theX0Map
private

Definition at line 31 of file MaterialBudgetCategorizer.h.

Referenced by x0fraction().