CMS 3D CMS Logo

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

#include <PrintGeomSummary.h>

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

Public Member Functions

 PrintGeomSummary (edm::ParameterSet const &p)
 
 ~PrintGeomSummary ()
 
- 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 addName (std::string name)
 
void addSolid (const DDLogicalPart &part)
 
void dumpSummary (std::ostream &out, std::string name)
 
void fillLV (G4LogicalVolume *lv)
 
G4VPhysicalVolume * getTopPV ()
 
void printSummary (std::ostream &out)
 
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::map< DDSolidShape, std::pair< int, int > > kount_
 
std::vector< G4LogicalVolume * > lvs_
 
std::vector< std::string > nodeNames_
 
std::vector< G4VSolid * > sls_
 
std::map< std::string, DDSolidShapesolidMap_
 
std::map< DDSolidShape, std::string > solidShape_
 
G4VPhysicalVolume * theTopPV_
 
std::vector< G4LogicalVolume * > touch_
 

Additional Inherited Members

Detailed Description

Definition at line 24 of file PrintGeomSummary.h.

Constructor & Destructor Documentation

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

Definition at line 32 of file PrintGeomSummary.cc.

References dd_not_init, ddbox, ddcons, ddcuttubs, ddellipsoid, ddellipticaltube, ddintersection, ddorb, ddparallelepiped, ddpolycone_rrz, ddpolycone_rz, ddpolyhedra_rrz, ddpolyhedra_rz, ddpseudotrap, ddreflected, ddshapeless, ddsphere, ddsubtraction, ddtorus, ddtrap, ddtrunctubs, ddtubs, ddunion, ecalTB2006H4_GenSimDigiReco_cfg::G4cout, edm::ParameterSet::getUntrackedParameter(), cuy::ii, nodeNames_, and solidShape_.

32  : theTopPV_(0) {
33  std::vector<std::string> defNames;
34  nodeNames_ = p.getUntrackedParameter<std::vector<std::string> >("NodeNames",defNames);
35  G4cout << "PrintGeomSummary:: initialised for " << nodeNames_.size()
36  << " nodes:" << G4endl;
37  for (unsigned int ii=0; ii<nodeNames_.size(); ii++)
38  G4cout << "Node[" << ii << "] : " << nodeNames_[ii] << G4endl;
39 
40  solidShape_[ddbox] = "Box";
41  solidShape_[ddtubs] = "Tube";
42  solidShape_[ddtrap] = "Trapezoid";
43  solidShape_[ddcons] = "Cone";
44  solidShape_[ddpolycone_rz] = "Polycone_rz";
45  solidShape_[ddpolyhedra_rz] = "Polyhedra_rz";
46  solidShape_[ddpolycone_rrz] = "Polycone_rrz";
47  solidShape_[ddpolyhedra_rrz] = "Polyhedra_rrz";
48  solidShape_[ddtorus] = "Torus";
49  solidShape_[ddunion] = "UnionSolid";
50  solidShape_[ddsubtraction] = "SubtractionSolid";
51  solidShape_[ddintersection] = "IntersectionSolid";
52  solidShape_[ddreflected] = "ReflectedSolid";
53  solidShape_[ddshapeless] = "ShapelessSolid";
54  solidShape_[ddpseudotrap] = "PseudoTrapezoid";
55  solidShape_[ddtrunctubs] = "TruncatedTube";
56  solidShape_[ddsphere] = "Sphere";
57  solidShape_[ddorb] = "Orb";
58  solidShape_[ddellipticaltube] = "EllipticalTube";
59  solidShape_[ddellipsoid] = "Ellipsoid";
60  solidShape_[ddparallelepiped] = "Parallelepiped";
61  solidShape_[ddcuttubs] = "CutTubs";
62  solidShape_[dd_not_init] = "Unknown";
63 }
std::map< DDSolidShape, std::string > solidShape_
G4VPhysicalVolume * theTopPV_
std::vector< std::string > nodeNames_
ii
Definition: cuy.py:588
PrintGeomSummary::~PrintGeomSummary ( )

Definition at line 65 of file PrintGeomSummary.cc.

65 {}

Member Function Documentation

void PrintGeomSummary::addName ( std::string  name)
private

Definition at line 178 of file PrintGeomSummary.cc.

References dd_not_init, plotBeamSpotDB::first, kount_, genParticles_cff::map, truncPyr::refl(), edm::second(), and solidMap_.

Referenced by dumpSummary().

178  {
179  bool refl(false);
180  if (name.find("_refl") < name.size()) {
181  refl = true;
182  name = name.substr(0,(name.find("_refl")));
183  }
184  std::map<std::string,DDSolidShape>::const_iterator jt=solidMap_.find(name);
185  DDSolidShape shape = (jt == solidMap_.end()) ? dd_not_init : jt->second;
186  std::map<DDSolidShape,std::pair<int,int>>::iterator itr = kount_.find(shape);
187  if (itr == kount_.end()) {
188  kount_[shape] = (refl) ? std::pair<int,int>(0,1) : std::pair<int,int>(1,0);
189  } else {
190  kount_[shape] = (refl) ?
191  std::pair<int,int>(((itr->second).first),++((itr->second).second)) :
192  std::pair<int,int>(++((itr->second).first),((itr->second).second));
193  }
194 }
DDSolidShape
Definition: DDSolidShapes.h:6
U second(std::pair< T, U > const &p)
std::map< DDSolidShape, std::pair< int, int > > kount_
Pt3D refl(const Pt3D &p)
std::map< std::string, DDSolidShape > solidMap_
void PrintGeomSummary::addSolid ( const DDLogicalPart part)
private

Definition at line 94 of file PrintGeomSummary.cc.

References dd_not_init, dataset::name, DDName::name(), DDBase< N, C >::name(), DDSolid::shape(), DDLogicalPart::solid(), solidMap_, solidShape_, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by update().

94  {
95  const DDSolid& solid = part.solid();
96  std::map<DDSolidShape,std::string>::iterator it = solidShape_.find(solid.shape());
97  std::string name = solid.name().name();
98  if (it == solidShape_.end()) solidMap_[name] = dd_not_init;
99  else solidMap_[name] = it->first;
100 //G4cout << "Solid " << name << " is of shape " << solidMap_[name] << G4endl;
101 }
std::map< DDSolidShape, std::string > solidShape_
const N & name() const
Definition: DDBase.h:78
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
A DDSolid represents the shape of a part.
Definition: DDSolid.h:37
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:140
const std::string & name() const
Returns the name.
Definition: DDName.cc:90
std::map< std::string, DDSolidShape > solidMap_
void PrintGeomSummary::dumpSummary ( std::ostream &  out,
std::string  name 
)
private

Definition at line 135 of file PrintGeomSummary.cc.

References addName(), kount_, lvs_, printSummary(), sls_, AlCaHLTBitMon_QueryRunRegistry::string, and touch_.

Referenced by update().

135  {
136 
137  //---------- Dump number of objects of each class
138  out << G4endl << G4endl
139  << "@@@@@@@@@@@@@@@@@@ Dumping Summary For Node " << name << G4endl;
140  out << " Number of G4VSolid's: " << sls_.size() << G4endl;
141  out << " Number of G4LogicalVolume's: " << lvs_.size() << G4endl;
142  out << " Number of Touchable's: " << touch_.size() << G4endl;
143  //First the solids
144  out << G4endl << "Occurence of each type of shape among Solids" << G4endl;
145  kount_.clear();
146  for (std::vector<G4VSolid*>::iterator it=sls_.begin(); it!=sls_.end(); ++it) {
147  std::string name = (*it)->GetName();
148  addName(name);
149  }
150  printSummary(out);
151  //Then the logical volumes
152  out << G4endl << "Occurence of each type of shape among Logical Volumes"
153  << G4endl;
154  kount_.clear();
155  for (std::vector<G4LogicalVolume*>::iterator it = lvs_.begin();
156  it != lvs_.end(); ++it) {
157  std::string name = ((*it)->GetSolid())->GetName();
158  addName(name);
159  }
160  printSummary(out);
161  //Finally the touchables
162  out << G4endl << "Occurence of each type of shape among Touchables"
163  << G4endl;
164  kount_.clear();
165  for (std::vector<G4LogicalVolume*>::iterator it = touch_.begin();
166  it != touch_.end(); ++it) {
167  std::string name = ((*it)->GetSolid())->GetName();
168  addName(name);
169  }
170  printSummary(out);
171 }
void addName(std::string name)
void printSummary(std::ostream &out)
std::vector< G4LogicalVolume * > touch_
std::map< DDSolidShape, std::pair< int, int > > kount_
std::vector< G4VSolid * > sls_
std::vector< G4LogicalVolume * > lvs_
void PrintGeomSummary::fillLV ( G4LogicalVolume *  lv)
private

Definition at line 125 of file PrintGeomSummary.cc.

References spr::find(), cuy::ii, createfilelist::int, lvs_, sls_, and touch_.

Referenced by update().

125  {
126 
127  if (std::find(lvs_.begin(),lvs_.end(),lv) == lvs_.end()) lvs_.push_back(lv);
128  G4VSolid* sl = lv->GetSolid();
129  if (std::find(sls_.begin(),sls_.end(),sl) == sls_.end()) sls_.push_back(sl);
130  touch_.push_back(lv);
131  for(int ii = 0; ii < (int)(lv->GetNoDaughters()); ii++)
132  fillLV(lv->GetDaughter(ii)->GetLogicalVolume());
133 }
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
std::vector< G4LogicalVolume * > touch_
void fillLV(G4LogicalVolume *lv)
ii
Definition: cuy.py:588
std::vector< G4VSolid * > sls_
std::vector< G4LogicalVolume * > lvs_
G4VPhysicalVolume * PrintGeomSummary::getTopPV ( )
private

Definition at line 173 of file PrintGeomSummary.cc.

Referenced by update().

173  {
174 
175  return G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking()->GetWorldVolume();
176 }
void PrintGeomSummary::printSummary ( std::ostream &  out)
private

Definition at line 196 of file PrintGeomSummary.cc.

References plotBeamSpotDB::first, gen::k, kount_, genParticles_cff::map, solidShape_, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by dumpSummary().

196  {
197  int k(0);
198  for (std::map<DDSolidShape,std::pair<int,int> >::iterator itr=kount_.begin();
199  itr != kount_.end(); ++itr, ++k) {
200  std::string shape = solidShape_[itr->first];
201  out << "Shape [" << k << "] " << shape << " # " << (itr->second).first
202  << " : " << (itr->second).second << G4endl;
203  }
204 }
std::map< DDSolidShape, std::string > solidShape_
DDSolidShape
Definition: DDSolidShapes.h:6
std::map< DDSolidShape, std::pair< int, int > > kount_
int k[5][pyjets_maxn]
void PrintGeomSummary::update ( const BeginOfJob )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const BeginOfJob * >.

Definition at line 67 of file PrintGeomSummary.cc.

References addSolid(), graph< N, E >::begin(), graph< N, E >::end(), ecalTB2006H4_GenSimDigiReco_cfg::G4cout, DDCompactView::graph(), mps_fire::i, graph< N, E >::nodeData(), and solidMap_.

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().

67  {
68 
70  (*job)()->get<IdealGeometryRecord>().get(pDD);
71  const DDCompactView* cpv = &(*pDD);
72 
73  const DDCompactView::graph_type & gra = cpv->graph();
75  solidMap_.clear();
77  git != gra.end(); ++git) {
78  const DDLogicalPart & ddLP = gra.nodeData(git);
79  addSolid(ddLP);
80  ++i;
81  if (git->size()) {
82  // ask for children of ddLP
83  for (DDCompactView::graph_type::edge_list::const_iterator cit = git->begin();
84  cit != git->end(); ++cit) {
85  const DDLogicalPart & ddcurLP = gra.nodeData(cit->first);
86  addSolid(ddcurLP);
87  }
88  }
89  }
90  G4cout << "Finds " << solidMap_.size() << " different solids in the tree"
91  << G4endl;
92 }
void addSolid(const DDLogicalPart &part)
const graph_type & graph() const
Provides read-only access to the data structure of the compact-view.
const N & nodeData(const edge_type &) const
Definition: adjgraph.h:317
std::vector< double >::size_type index_type
Definition: adjgraph.h:15
type of data representation of DDCompactView
Definition: DDCompactView.h:90
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:92
adj_list::const_iterator const_adj_iterator
Definition: adjgraph.h:125
adj_iterator begin()
Definition: adjgraph.h:197
std::map< std::string, DDSolidShape > solidMap_
adj_iterator end()
Definition: adjgraph.h:199
void PrintGeomSummary::update ( const BeginOfRun )
privatevirtual

This routine will be called when the appropriate signal arrives.

Implements Observer< const BeginOfRun * >.

Definition at line 103 of file PrintGeomSummary.cc.

References dumpSummary(), fillLV(), ecalTB2006H4_GenSimDigiReco_cfg::G4cout, getTopPV(), gen::k, lvs_, dataset::name, nodeNames_, sls_, AlCaHLTBitMon_QueryRunRegistry::string, theTopPV_, and touch_.

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().

103  {
104  theTopPV_ = getTopPV();
105  if (theTopPV_) {
106  lvs_.clear(); sls_.clear(); touch_.clear();
107  fillLV(theTopPV_->GetLogicalVolume());
108  std::string name = theTopPV_->GetName();
109  dumpSummary(G4cout,name);
110 
111  for (unsigned int k=0; k<nodeNames_.size(); ++k) {
112  const G4LogicalVolumeStore * lvs = G4LogicalVolumeStore::GetInstance();
113  std::vector<G4LogicalVolume *>::const_iterator lvcite;
114  for (lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++) {
115  if ((*lvcite)->GetName() == (G4String)(nodeNames_[k])) {
116  lvs_.clear(); sls_.clear(); touch_.clear();
117  fillLV(*lvcite);
119  }
120  }
121  }
122  }
123 }
G4VPhysicalVolume * getTopPV()
G4VPhysicalVolume * theTopPV_
std::vector< G4LogicalVolume * > touch_
std::vector< std::string > nodeNames_
void fillLV(G4LogicalVolume *lv)
int k[5][pyjets_maxn]
std::vector< G4VSolid * > sls_
void dumpSummary(std::ostream &out, std::string name)
std::vector< G4LogicalVolume * > lvs_

Member Data Documentation

std::map<DDSolidShape,std::pair<int,int> > PrintGeomSummary::kount_
private

Definition at line 49 of file PrintGeomSummary.h.

Referenced by addName(), dumpSummary(), and printSummary().

std::vector<G4LogicalVolume*> PrintGeomSummary::lvs_
private

Definition at line 47 of file PrintGeomSummary.h.

Referenced by dumpSummary(), fillLV(), and update().

std::vector<std::string> PrintGeomSummary::nodeNames_
private

Definition at line 43 of file PrintGeomSummary.h.

Referenced by PrintGeomSummary(), and update().

std::vector<G4VSolid*> PrintGeomSummary::sls_
private

Definition at line 48 of file PrintGeomSummary.h.

Referenced by dumpSummary(), fillLV(), and update().

std::map<std::string,DDSolidShape> PrintGeomSummary::solidMap_
private

Definition at line 45 of file PrintGeomSummary.h.

Referenced by addName(), addSolid(), and update().

std::map<DDSolidShape,std::string> PrintGeomSummary::solidShape_
private

Definition at line 44 of file PrintGeomSummary.h.

Referenced by addSolid(), PrintGeomSummary(), and printSummary().

G4VPhysicalVolume* PrintGeomSummary::theTopPV_
private

Definition at line 46 of file PrintGeomSummary.h.

Referenced by update().

std::vector<G4LogicalVolume*> PrintGeomSummary::touch_
private

Definition at line 47 of file PrintGeomSummary.h.

Referenced by dumpSummary(), fillLV(), and update().