CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
PrintGeomMatInfo Class Reference

#include <PrintGeomMatInfo.h>

Inheritance diagram for PrintGeomMatInfo:
SimWatcher Observer< const BeginOfJob * > Observer< const BeginOfRun * >

Public Member Functions

 PrintGeomMatInfo (edm::ParameterSet const &p)
 
 ~PrintGeomMatInfo ()
 
- Public Member Functions inherited from SimWatcher
 SimWatcher ()
 
virtual ~SimWatcher ()
 
- Public Member Functions inherited from Observer< const BeginOfJob * >
 Observer ()
 
void slotForUpdate (const BeginOfJob *iT)
 
virtual ~Observer ()
 
- Public Member Functions inherited from Observer< const BeginOfRun * >
 Observer ()
 
void slotForUpdate (const BeginOfRun *iT)
 
virtual ~Observer ()
 

Private Member Functions

void add1touchable (G4LogicalVolume *lv, int &nTouch)
 
int countNoTouchables ()
 
void dumpG4LVLeaf (G4LogicalVolume *lv, unsigned int leafDepth, unsigned int count, std::ostream &out=std::cout)
 
void dumpG4LVLeafWithMat (G4LogicalVolume *lv, unsigned int leafDepth, unsigned int count, std::ostream &out=std::cout)
 
void dumpG4LVList (std::ostream &out=std::cout)
 
void dumpG4LVMatBudget (std::ostream &out=std::cout)
 
void dumpG4LVTree (std::ostream &out=std::cout)
 
void dumpHierarchyLeafPVLV (G4LogicalVolume *lv, unsigned int leafDepth, std::ostream &out=std::cout)
 
void dumpHierarchyTreePVLV (std::ostream &out=std::cout)
 
void dumpLV (G4LogicalVolume *lv, unsigned int leafDepth, std::ostream &out=std::cout)
 
void dumpMaterialList (std::ostream &out=std::cout)
 
void dumpPV (G4VPhysicalVolume *pv, unsigned int leafDepth, std::ostream &out=std::cout)
 
void dumpSolid (G4VSolid *sol, unsigned int leafDepth, std::ostream &out=std::cout)
 
void dumpSummary (std::ostream &out=std::cout)
 
void dumpTouch (G4VPhysicalVolume *pv, unsigned int leafDepth, std::ostream &out=std::cout)
 
G4LogicalVolume * getTopLV ()
 
G4VPhysicalVolume * getTopPV ()
 
std::string spacesFromLeafDepth (unsigned int leafDepth)
 
void update (const BeginOfJob *job)
 This routine will be called when the appropriate signal arrives. More...
 
void update (const BeginOfRun *run)
 This routine will be called when the appropriate signal arrives. More...
 

Private Attributes

std::vector< double > _areaLayer
 
std::vector< unsigned int > _countsPerLevel
 
bool _dumpAtts
 
unsigned int _dumpIndex
 
bool _dumpIt
 
bool _dumpLV
 
bool _dumpLVList
 
bool _dumpLVMatBudget
 
bool _dumpLVTree
 
bool _dumpMaterial
 
bool _dumpPV
 
bool _dumpReplica
 
bool _dumpRotation
 
bool _dumpSense
 
bool _dumpSolid
 
bool _dumpSummary
 
bool _dumpTouch
 
unsigned int _level2Dump
 
std::vector< std::string > _lvNames2Dump
 
unsigned int _maxLevelsCounted
 
std::vector< double > _radiusLayer
 
std::vector< double > _zLayer
 
G4NavigationHistory fHistory
 
std::string name
 
std::vector< std::string > names
 
int nchar
 
mpvpv thePVTree
 
G4VPhysicalVolume * theTopPV
 

Additional Inherited Members

Detailed Description

Definition at line 24 of file PrintGeomMatInfo.h.

Constructor & Destructor Documentation

PrintGeomMatInfo::PrintGeomMatInfo ( edm::ParameterSet const &  p)

Definition at line 34 of file PrintGeomMatInfo.cc.

References gather_cfg::cout, edm::ParameterSet::getUntrackedParameter(), i, mergeVDriftHistosByStation::name, cscdqm::h::names, and AlCaHLTBitMon_QueryRunRegistry::string.

35 {
36  _dumpSummary = p.getUntrackedParameter<bool>("DumpSummary", true);
37  _dumpLVTree = p.getUntrackedParameter<bool>("DumpLVTree", true);
38  _dumpLVMatBudget = p.getUntrackedParameter<bool>("DumpLVMatBudget", false);
39  _lvNames2Dump= p.getUntrackedParameter<std::vector<std::string> >("LVNames2Dump");
40  _level2Dump = 0;
41  _dumpIndex = 0;
42  _dumpIt = false;
43  _radiusLayer = p.getUntrackedParameter<std::vector<double> >("Radius2Use");
44  _zLayer = p.getUntrackedParameter<std::vector<double> >("Z2Use");
45  _maxLevelsCounted = 50;
46  _countsPerLevel.assign(_maxLevelsCounted,0);
47  _dumpMaterial= p.getUntrackedParameter<bool>("DumpMaterial",false);
48  _dumpLVList = p.getUntrackedParameter<bool>("DumpLVList", false);
49  _dumpLV = p.getUntrackedParameter<bool>("DumpLV", false);
50  _dumpSolid = p.getUntrackedParameter<bool>("DumpSolid", false);
51  _dumpAtts = p.getUntrackedParameter<bool>("DumpAttributes", false);
52  _dumpPV = p.getUntrackedParameter<bool>("DumpPV", false);
53  _dumpRotation= p.getUntrackedParameter<bool>("DumpRotation",false);
54  _dumpReplica = p.getUntrackedParameter<bool>("DumpReplica", false);
55  _dumpTouch = p.getUntrackedParameter<bool>("DumpTouch", false);
56  _dumpSense = p.getUntrackedParameter<bool>("DumpSense", false);
57  name = p.getUntrackedParameter<std::string>("Name","*");
58  nchar = name.find("*");
59  name.assign(name,0,nchar);
60  names = p.getUntrackedParameter<std::vector<std::string> >("Names");
61  std::cout << "size of _lvNames2Dump = " << _lvNames2Dump.size()
62  << " size of _radiusLayer = " << _radiusLayer.size()
63  << " size of _zLayer = " << _zLayer.size() << std::endl;
64  std::cout << "PrintGeomMatInfo:: initialised with verbosity levels:"
65  << " Summary " << _dumpSummary << " LVTree " << _dumpLVTree
66  << " LVList " << _dumpLVList << " Material " << _dumpMaterial
67  << "\n "
68  << " LVMatBudget " << _dumpLVMatBudget << " for";
69  _areaLayer.reserve(_lvNames2Dump.size());
70  if(_lvNames2Dump.size() == _radiusLayer.size() &&
71  _lvNames2Dump.size() == _zLayer.size()) {
72  for (unsigned int i=0; i<_lvNames2Dump.size(); i++) {
73  _areaLayer[i] = 2.0*3.14159*_radiusLayer[i]*_zLayer[i];
74  std::cout << "\n "
75  << " " << _lvNames2Dump[i] << " radius = " << _radiusLayer[i]
76  << " z = " << _zLayer[i] << " area = " << _areaLayer[i];
77  }
78  } else {
79  _areaLayer.assign(3,0.0);
80  std::cout << "\n "
81  << " Problem with unequal sizes!! Fix and rerun";
82  }
83  std::cout << "\n "
84  << " and max levels for count = " << _maxLevelsCounted;
85  std::cout << "\n "
86  << " LV " << _dumpLV << " Solid " << _dumpSolid
87  << " Attribs " << _dumpAtts
88  << "\n "
89  << " PV " << _dumpPV << " Rotation " << _dumpRotation
90  << " Replica " << _dumpReplica
91  << "\n "
92  << " Touchable " << _dumpTouch << " for names (0-" << nchar
93  << ") = " << name
94  << "\n "
95  << " Sensitive " << _dumpSense << " for " << names.size()
96  << " names";
97  for (unsigned int i=0; i<names.size(); i++) std::cout << " " << names[i];
98  std::cout << std::endl;
99 }
int i
Definition: DBlmapReader.cc:9
std::vector< double > _radiusLayer
std::vector< std::string > names
std::vector< double > _areaLayer
std::vector< double > _zLayer
unsigned int _dumpIndex
std::vector< std::string > _lvNames2Dump
tuple cout
Definition: gather_cfg.py:145
unsigned int _maxLevelsCounted
unsigned int _level2Dump
std::vector< unsigned int > _countsPerLevel
PrintGeomMatInfo::~PrintGeomMatInfo ( )

Definition at line 101 of file PrintGeomMatInfo.cc.

101 {}

Member Function Documentation

void PrintGeomMatInfo::add1touchable ( G4LogicalVolume *  lv,
int &  nTouch 
)
private

Definition at line 294 of file PrintGeomMatInfo.cc.

References cuy::ii.

295 {
296  int siz = lv->GetNoDaughters();
297  for(int ii = 0; ii < siz; ii++)
298  add1touchable(lv->GetDaughter(ii)->GetLogicalVolume(), ++nTouch);
299 }
int ii
Definition: cuy.py:588
void add1touchable(G4LogicalVolume *lv, int &nTouch)
int PrintGeomMatInfo::countNoTouchables ( )
private

Definition at line 285 of file PrintGeomMatInfo.cc.

286 {
287  int nTouch = 0;
288  G4LogicalVolume * lv = getTopLV();
289  add1touchable(lv, nTouch);
290  return nTouch;
291 }
void add1touchable(G4LogicalVolume *lv, int &nTouch)
G4LogicalVolume * getTopLV()
void PrintGeomMatInfo::dumpG4LVLeaf ( G4LogicalVolume *  lv,
unsigned int  leafDepth,
unsigned int  count,
std::ostream &  out = std::cout 
)
private

Definition at line 210 of file PrintGeomMatInfo.cc.

References cuy::ii.

211 {
212  for (unsigned int ii=0; ii < leafDepth; ii++) out << " ";
213  out << " LV:(" << leafDepth << ") " << lv->GetName() << " (" << count
214  << ")" << std::endl;
215  //--- If a volume is placed n types as daughter of this LV, it should only be counted once
216  std::map<G4LogicalVolume*, unsigned int> lvCount;
217  std::map<G4LogicalVolume*, unsigned int>::const_iterator cite;
218  for (int ii = 0; ii < lv->GetNoDaughters(); ii++) {
219  cite = lvCount.find(lv->GetDaughter(ii)->GetLogicalVolume());
220  if (cite != lvCount.end()) lvCount[cite->first] = (cite->second) + 1;
221  else lvCount.insert(std::pair< G4LogicalVolume*,unsigned int>(lv->GetDaughter(ii)->GetLogicalVolume(),1));
222  }
223  for (cite = lvCount.begin(); cite != lvCount.end(); cite++)
224  dumpG4LVLeaf((cite->first), leafDepth+1, (cite->second), out);
225 }
int ii
Definition: cuy.py:588
void dumpG4LVLeaf(G4LogicalVolume *lv, unsigned int leafDepth, unsigned int count, std::ostream &out=std::cout)
void PrintGeomMatInfo::dumpG4LVLeafWithMat ( G4LogicalVolume *  lv,
unsigned int  leafDepth,
unsigned int  count,
std::ostream &  out = std::cout 
)
private

Definition at line 234 of file PrintGeomMatInfo.cc.

References compare(), KineDebug3::count(), i, and cuy::ii.

235 {
236  // switch off dumping at the next same level as the dump
237  if(_dumpIt && _level2Dump == leafDepth) {
238  _dumpIt = false;
239 // std::cout << " stopped dumping " << std::endl;
240  }
241  // loop over volumes to dump: volumes cannot not overlap in hierarchy!!
242  for (unsigned int i=0; i<_lvNames2Dump.size(); i++) {
243  if(_lvNames2Dump[i].compare(lv->GetName()) == 0) {
244  _dumpIt = true;
245  _dumpIndex = i;
246  _level2Dump = leafDepth;
247 // std::cout << " start dumping " << _lvNames2Dump[i] << " at level " << _level2Dump << std::endl;
248  break;
249  }
250  }
251 
252  if(_dumpIt) {
253  if(leafDepth < _maxLevelsCounted) _countsPerLevel[leafDepth] = count;
254  unsigned int total_multipler = 1;
255  for (unsigned int ii=_level2Dump; ii <= leafDepth; ii++) total_multipler *= _countsPerLevel[ii];
256  double thick = (lv->GetSolid()->GetCubicVolume() * total_multipler)/_areaLayer[_dumpIndex];
257  for (unsigned int ii=0; ii < leafDepth; ii++) out << " ";
258  // print out Level, Logical volume name, volume in mm**3, material name, rad len of mat in mm
259  // total number of volumes from dump level start, equivalent thickness when spread over
260  // a cylinder of _radiusLayer and length _zLayer; equivalent thick in rad len
261  out << " LV::" << leafDepth << ": " << lv->GetName() << " :" << count
262  << ": " << lv->GetSolid()->GetName() << " :" << lv->GetSolid()->GetCubicVolume()
263  << ": "<< lv->GetMaterial()->GetName() << " :" << lv->GetMaterial()->GetRadlen()
264  << ":" << " :" << total_multipler << ":"
265  << " thk :" << thick << ": x/X0 :" << thick/lv->GetMaterial()->GetRadlen()
266  << ":" << " Kg : " << lv->GetMass()/kg << std::endl;
267  } else {
268  for (unsigned int ii=0; ii < leafDepth; ii++) out << " ";
269  out << " LV:(" << leafDepth << ") " << lv->GetName() << " (" << count << ")" << std::endl;
270  }
271 
272  //--- If a volume is placed n types as daughter of this LV, it should only be counted once
273  std::map<G4LogicalVolume*, unsigned int> lvCount;
274  std::map<G4LogicalVolume*, unsigned int>::const_iterator cite;
275  for (int ii = 0; ii < lv->GetNoDaughters(); ii++) {
276  cite = lvCount.find(lv->GetDaughter(ii)->GetLogicalVolume());
277  if (cite != lvCount.end()) lvCount[cite->first] = (cite->second) + 1;
278  else lvCount.insert(std::pair< G4LogicalVolume*,unsigned int>(lv->GetDaughter(ii)->GetLogicalVolume(),1));
279  }
280  for (cite = lvCount.begin(); cite != lvCount.end(); cite++)
281  dumpG4LVLeafWithMat((cite->first), leafDepth+1, (cite->second), out);
282 }
int i
Definition: DBlmapReader.cc:9
void dumpG4LVLeafWithMat(G4LogicalVolume *lv, unsigned int leafDepth, unsigned int count, std::ostream &out=std::cout)
int ii
Definition: cuy.py:588
std::vector< double > _areaLayer
unsigned int _dumpIndex
void compare(std::vector< std::string > const &old_files, std::string const &old_process, std::vector< std::string > const &new_files, std::string const &new_process, unsigned int max_events, bool ignore_prescales, int verbose, int quiet)
Definition: hltDiff.cc:497
std::vector< std::string > _lvNames2Dump
unsigned int _maxLevelsCounted
unsigned int _level2Dump
std::vector< unsigned int > _countsPerLevel
void PrintGeomMatInfo::dumpG4LVList ( std::ostream &  out = std::cout)
private

Definition at line 184 of file PrintGeomMatInfo.cc.

185 {
186  out << " @@@@@@@@@@@@@@@@ DUMPING G4LogicalVolume's List " << std::endl;
187  const G4LogicalVolumeStore * lvs = G4LogicalVolumeStore::GetInstance();
188  std::vector<G4LogicalVolume*>::const_iterator lvcite;
189  for (lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++)
190  out << "LV:" << (*lvcite)->GetName() << "\tMaterial: " << (*lvcite)->GetMaterial()->GetName() << std::endl;
191 }
void PrintGeomMatInfo::dumpG4LVMatBudget ( std::ostream &  out = std::cout)
private

Definition at line 227 of file PrintGeomMatInfo.cc.

228 {
229  out << " @@@@@@@@@@@@@@@@ DUMPING G4LogicalVolume's Material Budget Tree " << std::endl;
230  G4LogicalVolume * lv = getTopLV();
231  dumpG4LVLeafWithMat(lv,0,1,out);
232 }
void dumpG4LVLeafWithMat(G4LogicalVolume *lv, unsigned int leafDepth, unsigned int count, std::ostream &out=std::cout)
G4LogicalVolume * getTopLV()
void PrintGeomMatInfo::dumpG4LVTree ( std::ostream &  out = std::cout)
private

Definition at line 193 of file PrintGeomMatInfo.cc.

194 {
195  out << " @@@@@@@@@@@@@@@@ DUMPING G4LogicalVolume's Tree " << std::endl;
196  G4LogicalVolume * lv = getTopLV();
197  dumpG4LVLeaf(lv,0,1,out);
198 }
G4LogicalVolume * getTopLV()
void dumpG4LVLeaf(G4LogicalVolume *lv, unsigned int leafDepth, unsigned int count, std::ostream &out=std::cout)
void PrintGeomMatInfo::dumpHierarchyLeafPVLV ( G4LogicalVolume *  lv,
unsigned int  leafDepth,
std::ostream &  out = std::cout 
)
private

Definition at line 319 of file PrintGeomMatInfo.cc.

320 {
321  //----- Dump this LV
322  dumpLV(lv, leafDepth, out);
323 
324  //----- Get LV daughters from list of PV daughters
325  mmlvpv lvpvDaughters;
326  std::set< G4LogicalVolume * > lvDaughters;
327  int NoDaughters = lv->GetNoDaughters();
328  while ((NoDaughters--)>0)
329  {
330  G4VPhysicalVolume * pvD = lv->GetDaughter(NoDaughters);
331  lvpvDaughters.insert(mmlvpv::value_type(pvD->GetLogicalVolume(), pvD));
332  lvDaughters.insert(pvD->GetLogicalVolume());
333  }
334 
335  std::set< G4LogicalVolume * >::const_iterator scite;
336  mmlvpv::const_iterator mmcite;
337 
338  //----- Dump daughters PV and LV
339  for (scite = lvDaughters.begin(); scite != lvDaughters.end(); scite++)
340  {
341  std::pair< mmlvpv::iterator, mmlvpv::iterator > mmER = lvpvDaughters.equal_range(*scite);
342  //----- Dump daughters PV of this LV
343  for (mmcite = mmER.first ; mmcite != mmER.second; mmcite++)
344  dumpPV((*mmcite).second, leafDepth+1, out);
345  //----- Dump daughters LV
346  dumpHierarchyLeafPVLV(*scite, leafDepth+1, out );
347  }
348 }
std::multimap< G4LogicalVolume *, G4VPhysicalVolume *, std::less< G4LogicalVolume * > > mmlvpv
void dumpHierarchyLeafPVLV(G4LogicalVolume *lv, unsigned int leafDepth, std::ostream &out=std::cout)
void dumpLV(G4LogicalVolume *lv, unsigned int leafDepth, std::ostream &out=std::cout)
void dumpPV(G4VPhysicalVolume *pv, unsigned int leafDepth, std::ostream &out=std::cout)
void PrintGeomMatInfo::dumpHierarchyTreePVLV ( std::ostream &  out = std::cout)
private

Definition at line 301 of file PrintGeomMatInfo.cc.

302 {
303  //dumps in the following order:
304  // 1) a LV with details
305  // 2) list of PVs daughters of this LV with details
306  // 3) list of LVs daughters of this LV and for each go to 1)
307 
308  //----- Get top PV
309  G4LogicalVolume* topLV = getTopLV();
310 
311  //----- Dump this leaf (it will recursively dump all the tree)
312  dumpHierarchyLeafPVLV(topLV, 0, out);
313  dumpPV(theTopPV, 0, out);
314 
315  //----- Dump the touchables (it will recursively dump all the tree)
316  if (_dumpTouch) dumpTouch(theTopPV, 0, out);
317 }
G4VPhysicalVolume * theTopPV
void dumpHierarchyLeafPVLV(G4LogicalVolume *lv, unsigned int leafDepth, std::ostream &out=std::cout)
void dumpPV(G4VPhysicalVolume *pv, unsigned int leafDepth, std::ostream &out=std::cout)
void dumpTouch(G4VPhysicalVolume *pv, unsigned int leafDepth, std::ostream &out=std::cout)
G4LogicalVolume * getTopLV()
void PrintGeomMatInfo::dumpLV ( G4LogicalVolume *  lv,
unsigned int  leafDepth,
std::ostream &  out = std::cout 
)
private

Definition at line 350 of file PrintGeomMatInfo.cc.

References GenerateHcalLaserBadRunList::out, and AlCaHLTBitMon_QueryRunRegistry::string.

351 {
352  std::string spaces = spacesFromLeafDepth(leafDepth);
353 
354  //----- dump name
355  if (_dumpLV) {
356  out << leafDepth << spaces << "$$$ VOLUME = " << lv->GetName()
357  << " Solid: " << lv->GetSolid()->GetName() << " MATERIAL: "
358  << lv->GetMaterial()->GetName() << std::endl;
359  if (_dumpSolid)
360  dumpSolid(lv->GetSolid(), leafDepth, out); //----- dump solid
361 
362  //----- dump LV info
363  //--- material
364  if (_dumpAtts) {
365  //--- Visualisation attributes
366  const G4VisAttributes * fVA = lv->GetVisAttributes();
367  if (fVA!=0) {
368  out << spaces << " VISUALISATION ATTRIBUTES: " << std::endl;
369  out << spaces << " IsVisible " << fVA->IsVisible() << std::endl;
370  out << spaces << " IsDaughtersInvisible " << fVA->IsDaughtersInvisible() << std::endl;
371  out << spaces << " Colour " << fVA->GetColour() << std::endl;
372  out << spaces << " LineStyle " << fVA->GetLineStyle() << std::endl;
373  out << spaces << " LineWidth " << fVA->GetLineWidth() << std::endl;
374  out << spaces << " IsForceDrawingStyle " << fVA->IsForceDrawingStyle() << std::endl;
375  out << spaces << " ForcedDrawingStyle " << fVA->GetForcedDrawingStyle() << std::endl;
376  }
377 
378  //--- User Limits
379  G4UserLimits * fUL = lv->GetUserLimits();
380  G4Track dummy;
381  if (fUL!=0) {
382  out << spaces << " MaxAllowedStep " << fUL->GetMaxAllowedStep(dummy) << std::endl;
383  out << spaces << " UserMaxTrackLength " << fUL->GetUserMaxTrackLength(dummy) << std::endl;
384  out << spaces << " UserMaxTime " << fUL->GetUserMaxTime(dummy) << std::endl;
385  out << spaces << " UserMinEkine " << fUL->GetUserMinEkine(dummy) << std::endl;
386  out << spaces << " UserMinRange " << fUL->GetUserMinRange(dummy) << std::endl;
387  }
388 
389  //--- other LV info
390  if (lv->GetSensitiveDetector())
391  out << spaces << " IS SENSITIVE DETECTOR " << std::endl;
392  if (lv->GetFieldManager())
393  out << spaces << " FIELD ON " << std::endl;
394 
395  // Pointer (possibly NULL) to optimisation info objects.
396  out << spaces
397  << " Quality for optimisation, average number of voxels to be spent per content "
398  << lv->GetSmartless() << std::endl;
399 
400  // Pointer (possibly NULL) to G4FastSimulationManager object.
401  if (lv->GetFastSimulationManager())
402  out << spaces << " Logical Volume is an envelope for a FastSimulationManager "
403  << std::endl;
404  out << spaces << " Weight used in the event biasing technique = "
405  << lv->GetBiasWeight() << std::endl;
406  }
407  }
408 }
std::string spacesFromLeafDepth(unsigned int leafDepth)
void dumpSolid(G4VSolid *sol, unsigned int leafDepth, std::ostream &out=std::cout)
void PrintGeomMatInfo::dumpMaterialList ( std::ostream &  out = std::cout)
private

Definition at line 200 of file PrintGeomMatInfo.cc.

201 {
202  out << " @@@@@@@@@@@@@@@@ DUMPING G4Material List ";
203  const G4MaterialTable * matTab = G4Material::GetMaterialTable();
204  out << " with " << matTab->size() << " materials " << std::endl;
205  std::vector<G4Material*>::const_iterator matite;
206  for (matite = matTab->begin(); matite != matTab->end(); matite++)
207  out << "Material: " << (*matite) << std::endl;
208 }
void PrintGeomMatInfo::dumpPV ( G4VPhysicalVolume *  pv,
unsigned int  leafDepth,
std::ostream &  out = std::cout 
)
private

Definition at line 410 of file PrintGeomMatInfo.cc.

References hltrates_dqm_sourceclient-live_cfg::offset, AlCaHLTBitMon_QueryRunRegistry::string, and create_public_lumi_plots::width.

411 {
412  std::string spaces = spacesFromLeafDepth(leafDepth);
413 
414  //----- PV info
415  if (_dumpPV)
416  {
417  std::string mother = "World";
418  if (pv->GetMotherLogical()) mother = pv->GetMotherLogical()->GetName();
419  out << leafDepth << spaces << "### VOLUME = " << pv->GetName()
420  << " Copy No " << pv->GetCopyNo() << " in " << mother
421  << " at " << pv->GetTranslation();
422  }
423  if (!pv->IsReplicated())
424  {
425  if (_dumpPV)
426  {
427  if(pv->GetRotation() == 0) out << " with no rotation" << std::endl;
428  else if(!_dumpRotation) out << " with rotation" << std::endl; //just rotation name
429  else out << " with rotation " << *(pv->GetRotation()) << std::endl;
430  }
431  }
432  else
433  {
434  if (_dumpReplica )
435  {
436  out << spaces << " It is replica: " << std::endl;
437  EAxis axis;
438  int nReplicas;
439  double width;
440  double offset;
441  bool consuming;
442  pv->GetReplicationData(axis, nReplicas, width, offset, consuming);
443  out << spaces << " axis " << axis << std::endl
444  << spaces << " nReplicas " << nReplicas << std::endl;
445  if (pv->GetParameterisation() != 0)
446  out << spaces << " It is parameterisation " << std::endl;
447  else
448  out << spaces << " width " << width << std::endl
449  << spaces << " offset " << offset << std::endl
450  << spaces << " consuming" << consuming << std::endl;
451  if (pv->GetParameterisation() != 0)
452  out << spaces << " It is parameterisation " << std::endl;
453  }
454  }
455 }
std::string spacesFromLeafDepth(unsigned int leafDepth)
void PrintGeomMatInfo::dumpSolid ( G4VSolid *  sol,
unsigned int  leafDepth,
std::ostream &  out = std::cout 
)
private

Definition at line 496 of file PrintGeomMatInfo.cc.

References AlCaHLTBitMon_QueryRunRegistry::string.

497 {
498  std::string spaces = spacesFromLeafDepth(leafDepth);
499  out << spaces << *(sol) << std::endl;
500 }
std::string spacesFromLeafDepth(unsigned int leafDepth)
void PrintGeomMatInfo::dumpSummary ( std::ostream &  out = std::cout)
private

Definition at line 159 of file PrintGeomMatInfo.cc.

160 {
161  //---------- Dump number of objects of each class
162  out << " @@@@@@@@@@@@@@@@@@ Dumping G4 geometry objects Summary " << std::endl;
163  if(theTopPV == 0)
164  {
165  out << " No volume created " << std::endl;
166  return;
167  }
168  out << " @@@ Geometry built inside world volume: " << theTopPV->GetName() << std::endl;
169  // Get number of solids (< # LV if several LV share a solid)
170  const G4LogicalVolumeStore * lvs = G4LogicalVolumeStore::GetInstance();
171  std::vector<G4LogicalVolume *>::const_iterator lvcite;
172  std::set<G4VSolid *> theSolids;
173  for (lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++)
174  theSolids.insert((*lvcite)->GetSolid());
175  out << " Number of G4VSolid's: " << theSolids.size() << std::endl;
176  out << " Number of G4LogicalVolume's: " << lvs->size() << std::endl;
177  const G4PhysicalVolumeStore * pvs = G4PhysicalVolumeStore::GetInstance();
178  out << " Number of G4VPhysicalVolume's: " << pvs->size() << std::endl;
179  out << " Number of Touchable's: " << countNoTouchables() << std::endl;
180  const G4MaterialTable * matTab = G4Material::GetMaterialTable();
181  out << " Number of G4Material's: " << matTab->size() << std::endl;
182 }
G4VPhysicalVolume * theTopPV
void PrintGeomMatInfo::dumpTouch ( G4VPhysicalVolume *  pv,
unsigned int  leafDepth,
std::ostream &  out = std::cout 
)
private

Definition at line 457 of file PrintGeomMatInfo.cc.

References mergeVDriftHistosByStation::name, and AlCaHLTBitMon_QueryRunRegistry::string.

458 {
459  std::string spaces = spacesFromLeafDepth(leafDepth);
460  if (leafDepth == 0) fHistory.SetFirstEntry(pv);
461  else fHistory.NewLevel(pv, kNormal, pv->GetCopyNo());
462 
463  G4ThreeVector globalpoint = fHistory.GetTopTransform().Inverse().
464  TransformPoint(G4ThreeVector(0,0,0));
465  G4LogicalVolume * lv = pv->GetLogicalVolume();
466 
467  std::string mother = "World";
468  if (pv->GetMotherLogical()) mother = pv->GetMotherLogical()->GetName();
469  std::string lvname = lv->GetName();
470  lvname.assign(lvname,0,nchar);
471  if (lvname == name)
472  out << leafDepth << spaces << "### VOLUME = " << lv->GetName()
473  << " Copy No " << pv->GetCopyNo() << " in " << mother
474  << " global position of centre " << globalpoint << " (r = "
475  << globalpoint.perp() << ", phi = " << globalpoint.phi()/deg
476  << ")" << std::endl;
477 
478  int NoDaughters = lv->GetNoDaughters();
479  while ((NoDaughters--)>0)
480  {
481  G4VPhysicalVolume * pvD = lv->GetDaughter(NoDaughters);
482  if (!pvD->IsReplicated()) dumpTouch(pvD, leafDepth+1, out);
483  }
484 
485  if (leafDepth > 0) fHistory.BackLevel();
486 }
std::string spacesFromLeafDepth(unsigned int leafDepth)
void dumpTouch(G4VPhysicalVolume *pv, unsigned int leafDepth, std::ostream &out=std::cout)
G4NavigationHistory fHistory
G4LogicalVolume * PrintGeomMatInfo::getTopLV ( )
private

Definition at line 508 of file PrintGeomMatInfo.cc.

509 { return theTopPV->GetLogicalVolume(); }
G4VPhysicalVolume * theTopPV
G4VPhysicalVolume * PrintGeomMatInfo::getTopPV ( )
private

Definition at line 502 of file PrintGeomMatInfo.cc.

503 {
504  return G4TransportationManager::GetTransportationManager()
505  ->GetNavigatorForTracking()->GetWorldVolume();
506 }
std::string PrintGeomMatInfo::spacesFromLeafDepth ( unsigned int  leafDepth)
private

Definition at line 488 of file PrintGeomMatInfo.cc.

References cuy::ii, and AlCaHLTBitMon_QueryRunRegistry::string.

489 {
490  std::string spaces;
491  unsigned int ii;
492  for(ii = 0; ii < leafDepth; ii++) { spaces += " "; }
493  return spaces;
494 }
int ii
Definition: cuy.py:588
void PrintGeomMatInfo::update ( const BeginOfJob )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const BeginOfJob * >.

Definition at line 103 of file PrintGeomMatInfo.cc.

References DDFilteredView::addFilter(), filterCSVwithJSON::copy, DDFilteredView::copyNumbers(), gather_cfg::cout, DDSplit(), equals, alcazmumu_cfi::filter, plotBeamSpotDB::first, DDFilteredView::firstChild(), i, relval_2017::k, dqm-mbProfile::log, DDFilteredView::logicalPart(), DDBase< N, C >::name(), cscdqm::h::names, DDFilteredView::next(), sd, DDSpecificsFilter::setCriteria(), AlCaHLTBitMon_QueryRunRegistry::string, and DDFilteredView::translation().

Referenced by progressbar.ProgressBar::__next__(), MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), progressbar.ProgressBar::finish(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

104 {
105  if (_dumpSense) {
107  (*job)()->get<IdealGeometryRecord>().get(pDD);
108 
109  std::cout << "PrintGeomMatInfo::Get Printout of Sensitive Volumes "
110  << "for " << names.size() << " Readout Units" << std::endl;
111  for (unsigned int i=0; i<names.size(); i++) {
112  std::string attribute = "ReadOutName";
113  std::string sd = names[i];
115  DDValue ddv(attribute,sd,0);
116  filter.setCriteria(ddv,DDCompOp::equals);
117  DDFilteredView fv(*pDD);
118  std::cout << "PrintGeomMatInfo:: Get Filtered view for "
119  << attribute << " = " << sd << std::endl;
120  fv.addFilter(filter);
121  bool dodet = fv.firstChild();
122 
123  std::string spaces = spacesFromLeafDepth(1);
124 
125  while (dodet) {
126  const DDLogicalPart & log = fv.logicalPart();
127  std::string lvname = DDSplit(log.name()).first;
128  DDTranslation tran = fv.translation();
129  std::vector<int> copy = fv.copyNumbers();
130 
131  unsigned int leafDepth = copy.size();
132  std::cout << leafDepth << spaces << "### VOLUME = " << lvname
133  << " Copy No";
134  for (int k=leafDepth-1; k>=0; k--) std::cout << " " << copy[k];
135  std::cout << " Centre at " << tran << " (r = " << tran.Rho()
136  << ", phi = " << tran.phi()/deg << ")" << std::endl;
137  dodet = fv.next();
138  }
139  }
140  }
141 }
int i
Definition: DBlmapReader.cc:9
const N & name() const
Definition: DDBase.h:78
std::vector< std::string > names
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
std::string spacesFromLeafDepth(unsigned int leafDepth)
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:88
double sd
tuple cout
Definition: gather_cfg.py:145
std::pair< std::string, std::string > DDSplit(const std::string &n)
split into (name,namespace), separator = &#39;:&#39;
Definition: DDSplit.cc:4
void setCriteria(const DDValue &nameVal, DDCompOp, DDLogOp l=DDLogOp::AND, bool asString=true, bool merged=true)
Definition: DDFilter.cc:245
The DDGenericFilter is a runtime-parametrized Filter looking on DDSpecifcs.
Definition: DDFilter.h:32
void PrintGeomMatInfo::update ( const BeginOfRun )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const BeginOfRun * >.

Definition at line 143 of file PrintGeomMatInfo.cc.

References gather_cfg::cout.

Referenced by progressbar.ProgressBar::__next__(), MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), progressbar.ProgressBar::finish(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

144 {
145  theTopPV = getTopPV();
146 
150 
151  //---------- Dump list of objects of each class with detail of parameters
154 
155  //---------- Dump LV and PV information
157 }
G4VPhysicalVolume * getTopPV()
void dumpG4LVTree(std::ostream &out=std::cout)
void dumpMaterialList(std::ostream &out=std::cout)
G4VPhysicalVolume * theTopPV
void dumpG4LVList(std::ostream &out=std::cout)
void dumpG4LVMatBudget(std::ostream &out=std::cout)
void dumpHierarchyTreePVLV(std::ostream &out=std::cout)
void dumpSummary(std::ostream &out=std::cout)
tuple cout
Definition: gather_cfg.py:145

Member Data Documentation

std::vector<double> PrintGeomMatInfo::_areaLayer
private

Definition at line 63 of file PrintGeomMatInfo.h.

std::vector<unsigned int> PrintGeomMatInfo::_countsPerLevel
private

Definition at line 64 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpAtts
private

Definition at line 55 of file PrintGeomMatInfo.h.

unsigned int PrintGeomMatInfo::_dumpIndex
private

Definition at line 67 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpIt
private

Definition at line 68 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpLV
private

Definition at line 55 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpLVList
private

Definition at line 53 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpLVMatBudget
private

Definition at line 53 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpLVTree
private

Definition at line 53 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpMaterial
private

Definition at line 54 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpPV
private

Definition at line 56 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpReplica
private

Definition at line 56 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpRotation
private

Definition at line 56 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpSense
private

Definition at line 55 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpSolid
private

Definition at line 55 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpSummary
private

Definition at line 53 of file PrintGeomMatInfo.h.

bool PrintGeomMatInfo::_dumpTouch
private

Definition at line 56 of file PrintGeomMatInfo.h.

unsigned int PrintGeomMatInfo::_level2Dump
private

Definition at line 66 of file PrintGeomMatInfo.h.

std::vector<std::string> PrintGeomMatInfo::_lvNames2Dump
private

Definition at line 60 of file PrintGeomMatInfo.h.

unsigned int PrintGeomMatInfo::_maxLevelsCounted
private

Definition at line 65 of file PrintGeomMatInfo.h.

std::vector<double> PrintGeomMatInfo::_radiusLayer
private

Definition at line 61 of file PrintGeomMatInfo.h.

std::vector<double> PrintGeomMatInfo::_zLayer
private

Definition at line 62 of file PrintGeomMatInfo.h.

G4NavigationHistory PrintGeomMatInfo::fHistory
private

Definition at line 71 of file PrintGeomMatInfo.h.

std::string PrintGeomMatInfo::name
private
std::vector<std::string> PrintGeomMatInfo::names
private

Definition at line 59 of file PrintGeomMatInfo.h.

int PrintGeomMatInfo::nchar
private

Definition at line 58 of file PrintGeomMatInfo.h.

mpvpv PrintGeomMatInfo::thePVTree
private

Definition at line 69 of file PrintGeomMatInfo.h.

G4VPhysicalVolume* PrintGeomMatInfo::theTopPV
private

Definition at line 70 of file PrintGeomMatInfo.h.