CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
OutputDDToDDL Class Reference
Inheritance diagram for OutputDDToDDL:
edm::one::EDAnalyzer< edm::one::WatchRuns > edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

void analyze (edm::Event const &iEvent, edm::EventSetup const &) override
 
void beginJob () override
 
void beginRun (edm::Run const &iEvent, edm::EventSetup const &) override
 
void endJob () override
 
void endRun (edm::Run const &iEvent, edm::EventSetup const &) override
 
 OutputDDToDDL (const edm::ParameterSet &iConfig)
 
 ~OutputDDToDDL () override
 
- Public Member Functions inherited from edm::one::EDAnalyzer< edm::one::WatchRuns >
 EDAnalyzer ()=default
 
SerialTaskQueueglobalLuminosityBlocksQueue () final
 
SerialTaskQueueglobalRunsQueue () final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
bool wantsStreamLuminosityBlocks () const
 
bool wantsStreamRuns () const
 
 ~EDAnalyzerBase () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void addToMatStore (const DDMaterial &mat, std::set< DDMaterial > &matStore)
 
void addToSolStore (const DDSolid &sol, std::set< DDSolid > &solStore, std::set< DDRotation > &rotStore)
 
void addToSpecStore (const DDLogicalPart &lp, std::map< const DDsvalues_type, std::set< const DDPartSelection * >, ddsvaluesCmp > &specStore)
 

Private Attributes

std::string m_fname
 
int m_rotNumSeed
 
std::ostream * m_xos
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 36 of file OutputDDToDDL.cc.

Constructor & Destructor Documentation

OutputDDToDDL::OutputDDToDDL ( const edm::ParameterSet iConfig)
explicit

Definition at line 74 of file OutputDDToDDL.cc.

References gather_cfg::cout, alignBH_cfg::fixed, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), m_fname, m_rotNumSeed, m_xos, and AlCaHLTBitMon_QueryRunRegistry::string.

75  : m_fname()
76 {
77  m_rotNumSeed = iConfig.getParameter<int>("rotNumSeed");
78  m_fname = iConfig.getUntrackedParameter<std::string>("fileName");
79  if( m_fname.empty() ) {
80  m_xos = &std::cout;
81  } else {
82  m_xos = new std::ofstream( m_fname.c_str());
83  }
84  (*m_xos) << "<?xml version=\"1.0\"?>" << std::endl;
85  (*m_xos) << "<DDDefinition xmlns=\"http://www.cern.ch/cms/DDL\"" << std::endl;
86  (*m_xos) << " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"" << std::endl;
87  (*m_xos) << "xsi:schemaLocation=\"http://www.cern.ch/cms/DDL ../../../DetectorDescription/Schema/DDLSchema.xsd\">" << std::endl;
88  (*m_xos) << std::fixed << std::setprecision(18);
89 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::string m_fname
std::ostream * m_xos
OutputDDToDDL::~OutputDDToDDL ( )
override

Definition at line 91 of file OutputDDToDDL.cc.

References m_xos.

92 {
93  (*m_xos) << "</DDDefinition>" << std::endl;
94  (*m_xos) << std::endl;
95  m_xos->flush();
96 }
std::ostream * m_xos

Member Function Documentation

void OutputDDToDDL::addToMatStore ( const DDMaterial mat,
std::set< DDMaterial > &  matStore 
)
private

Definition at line 223 of file OutputDDToDDL.cc.

References DDMaterial::constituent(), and DDMaterial::noOfConstituents().

Referenced by beginRun().

224 {
225  matStore.insert( mat );
226  if( mat.noOfConstituents() != 0 ) {
227  int findex(0);
228  while( findex < mat.noOfConstituents()) {
229  if( matStore.find( mat.constituent( findex ).first) == matStore.end()) {
230  addToMatStore( mat.constituent( findex ).first, matStore );
231  }
232  ++findex;
233  }
234  }
235 }
void addToMatStore(const DDMaterial &mat, std::set< DDMaterial > &matStore)
FractionV::value_type constituent(int i) const
returns the i-th compound material and its fraction-mass
Definition: DDMaterial.cc:87
int noOfConstituents() const
returns the number of compound materials or 0 for elementary materials
Definition: DDMaterial.cc:82
void OutputDDToDDL::addToSolStore ( const DDSolid sol,
std::set< DDSolid > &  solStore,
std::set< DDRotation > &  rotStore 
)
private

Definition at line 238 of file OutputDDToDDL.cc.

References ddintersection, ddsubtraction, ddunion, DDBooleanSolid::rotation(), DDSolid::shape(), DDBooleanSolid::solidA(), and DDBooleanSolid::solidB().

Referenced by beginRun().

239 {
240  solStore.insert(sol);
242  const DDBooleanSolid& bs (sol);
243  if( solStore.find( bs.solidA()) == solStore.end()) {
244  addToSolStore( bs.solidA(), solStore, rotStore );
245  }
246  if( solStore.find( bs.solidB()) == solStore.end()) {
247  addToSolStore( bs.solidB(), solStore, rotStore );
248  }
249  rotStore.insert( bs.rotation());
250  }
251 }
void addToSolStore(const DDSolid &sol, std::set< DDSolid > &solStore, std::set< DDRotation > &rotStore)
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:138
void OutputDDToDDL::addToSpecStore ( const DDLogicalPart lp,
std::map< const DDsvalues_type, std::set< const DDPartSelection * >, ddsvaluesCmp > &  specStore 
)
private

Definition at line 254 of file OutputDDToDDL.cc.

References DDLogicalPart::attachedSpecifics(), and DEFINE_FWK_MODULE.

Referenced by beginRun().

256 {
257  for( auto spit : lp.attachedSpecifics()) {
258  specStore[*spit.second].insert( spit.first );
259  }
260 }
const std::vector< std::pair< const DDPartSelection *, const DDsvalues_type * > > & attachedSpecifics(void) const
void OutputDDToDDL::analyze ( edm::Event const &  iEvent,
edm::EventSetup const &   
)
inlineoverridevirtual

Implements edm::one::EDAnalyzerBase.

Definition at line 44 of file OutputDDToDDL.cc.

44 {}
void OutputDDToDDL::beginJob ( void  )
inlineoverridevirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 42 of file OutputDDToDDL.cc.

References iEvent.

42 {}
void OutputDDToDDL::beginRun ( edm::Run const &  iEvent,
edm::EventSetup const &   
)
override

Definition at line 99 of file OutputDDToDDL.cc.

References addToMatStore(), addToSolStore(), addToSpecStore(), gather_cfg::cout, alignBH_cfg::fixed, edm::EventSetup::get(), DDCompactView::graph(), mps_fire::i, DDCoreToDDXMLOutput::logicalPart(), m_fname, m_rotNumSeed, m_xos, DDCoreToDDXMLOutput::material(), DDLogicalPart::material(), DDCoreToDDXMLOutput::ns_, MillePedeFileConverter_cfg::out, DDCoreToDDXMLOutput::position(), alignCSCRings::r, DivergingColor::red, DDCoreToDDXMLOutput::rotation(), DDCoreToDDXMLOutput::solid(), DDLogicalPart::solid(), DDCoreToDDXMLOutput::specpar(), and AlCaHLTBitMon_QueryRunRegistry::string.

100 {
101  std::cout << "OutputDDToDDL::beginRun" << std::endl;
102 
104  es.get<IdealGeometryRecord>().get( pDD );
105 
106  using Graph = DDCompactView::Graph;
108 
109  const auto& gra = pDD->graph();
110  // temporary stores:
111  std::set<DDLogicalPart> lpStore;
112  std::set<DDMaterial> matStore;
113  std::set<DDSolid> solStore;
114  // 2009-08-19: MEC: I've tried this with set<DDPartSelection> and
115  // had to write operator< for DDPartSelection and DDPartSelectionLevel
116  // the output from such an effort is different than this one.
117  std::map<const DDsvalues_type, std::set<const DDPartSelection*>, ddsvaluesCmp > specStore;
118  std::set<DDRotation> rotStore;
119 
121 
122  std::string rn = m_fname;
123  size_t foundLastDot = rn.find_last_of('.');
124  size_t foundLastSlash = rn.find_last_of('/');
125  if( foundLastSlash > foundLastDot && foundLastSlash != std::string::npos ) {
126  std::cout << "What? last . before last / in path for filename... this should die..." << std::endl;
127  }
128  if( foundLastDot != std::string::npos && foundLastSlash != std::string::npos ) {
129  out.ns_ = rn.substr( foundLastSlash, foundLastDot );
130  } else if( foundLastDot != std::string::npos ) {
131  out.ns_ = rn.substr(0, foundLastDot);
132  } else {
133  std::cout << "What? no file name? Attempt at namespace =\"" << out.ns_ << "\" filename was " << m_fname << std::endl;
134  }
135  std::cout << "m_fname = " << m_fname << " namespace = " << out.ns_ << std::endl;
136  std::string ns_ = out.ns_;
137 
138  (*m_xos) << std::fixed << std::setprecision(18);
139 
140  adjl_iterator git = gra.begin();
141  adjl_iterator gend = gra.end();
142 
144  (*m_xos) << "<PosPartSection label=\"" << ns_ << "\">" << std::endl;
145  git = gra.begin();
146  for( ; git != gend; ++git ) {
147  const DDLogicalPart & ddLP = gra.nodeData( git );
148  if( lpStore.find( ddLP ) != lpStore.end()) {
149  addToSpecStore( ddLP, specStore );
150  }
151  lpStore.insert( ddLP );
152  addToMatStore( ddLP.material(), matStore );
153  addToSolStore( ddLP.solid(), solStore, rotStore );
154  ++i;
155  if( !git->empty()) {
156  // ask for children of ddLP
157  auto cit = git->begin();
158  auto cend = git->end();
159  for( ; cit != cend; ++cit ) {
160  const DDLogicalPart & ddcurLP = gra.nodeData( cit->first );
161  if( lpStore.find( ddcurLP ) != lpStore.end()) {
162  addToSpecStore( ddcurLP, specStore );
163  }
164  lpStore.insert( ddcurLP );
165  addToMatStore( ddcurLP.material(), matStore );
166  addToSolStore( ddcurLP.solid(), solStore, rotStore );
167  rotStore.insert( gra.edgeData( cit->second )->ddrot() );
168  out.position( ddLP, ddcurLP, gra.edgeData( cit->second ), m_rotNumSeed, *m_xos );
169  } // iterate over children
170  } // if (children)
171  } // iterate over graph nodes
172 
173  (*m_xos) << "</PosPartSection>" << std::endl;
174 
175  (*m_xos) << std::scientific << std::setprecision(18);
176 
177  (*m_xos) << "<MaterialSection label=\"" << ns_ << "\">" << std::endl;
178  for( auto it : matStore ) {
179  if( ! it.isDefined().second ) continue;
180  out.material( it, *m_xos );
181  }
182  (*m_xos) << "</MaterialSection>" << std::endl;
183  (*m_xos) << "<RotationSection label=\"" << ns_ << "\">" << std::endl;
184  (*m_xos) << std::fixed << std::setprecision(18);
185  std::set<DDRotation>::iterator rit( rotStore.begin()), red( rotStore.end());
186  for( ; rit != red; ++rit ) {
187  if( !rit->isDefined().second ) continue;
188  if( rit->toString() != ":" ) {
189  DDRotation r(*rit);
190  out.rotation(r, *m_xos);
191  }
192  }
193  (*m_xos) << "</RotationSection>" << std::endl;
194 
195  (*m_xos) << std::fixed << std::setprecision(18);
196  std::set<DDSolid>::const_iterator sit( solStore.begin()), sed( solStore.end());
197  (*m_xos) << "<SolidSection label=\"" << ns_ << "\">" << std::endl;
198  for( ; sit != sed; ++sit ) {
199  if( !sit->isDefined().second) continue;
200  out.solid( *sit, *m_xos );
201  }
202  (*m_xos) << "</SolidSection>" << std::endl;
203 
204  std::set<DDLogicalPart>::iterator lpit( lpStore.begin()), lped( lpStore.end());
205  (*m_xos) << "<LogicalPartSection label=\"" << ns_ << "\">" << std::endl;
206  for( ; lpit != lped; ++lpit ) {
207  if( !lpit->isDefined().first ) continue;
208  const DDLogicalPart & lp = *lpit;
209  out.logicalPart( lp, *m_xos);
210  }
211  (*m_xos) << "</LogicalPartSection>" << std::endl;
212 
213  (*m_xos) << std::fixed << std::setprecision(18);
214  std::map<DDsvalues_type, std::set<const DDPartSelection*> >::const_iterator mit( specStore.begin()), mend( specStore.end());
215  (*m_xos) << "<SpecParSection label=\"" << ns_ << "\">" << std::endl;
216  for( ; mit != mend; ++mit ) {
217  out.specpar ( *mit, *m_xos );
218  }
219  (*m_xos) << "</SpecParSection>" << std::endl;
220 }
std::vector< double >::size_type index_type
Definition: Graph.h:16
void addToSpecStore(const DDLogicalPart &lp, std::map< const DDsvalues_type, std::set< const DDPartSelection * >, ddsvaluesCmp > &specStore)
std::string m_fname
void addToMatStore(const DDMaterial &mat, std::set< DDMaterial > &matStore)
void specpar(const DDSpecifics &sp, std::ostream &xos)
const DDSolid & solid(void) const
Returns a reference object of the solid being the shape of this LogicalPart.
void addToSolStore(const DDSolid &sol, std::set< DDSolid > &solStore, std::set< DDRotation > &rotStore)
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:68
std::ostream * m_xos
void position(const DDLogicalPart &parent, const DDLogicalPart &child, DDPosData *edgeToChild, int &rotNameSeed, std::ostream &xos)
A DDLogicalPart aggregates information concerning material, solid and sensitveness ...
Definition: DDLogicalPart.h:93
void logicalPart(const DDLogicalPart &lp, std::ostream &xos)
Graph::const_adj_iterator adjl_iterator
const Graph & graph() const
Provides read-only access to the data structure of the compact-view.
void material(const DDMaterial &material, std::ostream &xos)
math::Graph< DDLogicalPart, DDPosData * > Graph
Definition: DDCompactView.h:83
adj_list::const_iterator const_adj_iterator
Definition: Graph.h:125
void rotation(const DDRotation &rotation, std::ostream &xos, const std::string &rotn="")
void solid(const DDSolid &solid, std::ostream &xos)
const DDMaterial & material(void) const
Returns a reference object of the material this LogicalPart is made of.
void OutputDDToDDL::endJob ( void  )
inlineoverridevirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 46 of file OutputDDToDDL.cc.

References genParticles_cff::map.

46 {}
void OutputDDToDDL::endRun ( edm::Run const &  iEvent,
edm::EventSetup const &   
)
inlineoverride

Definition at line 45 of file OutputDDToDDL.cc.

45 {}

Member Data Documentation

std::string OutputDDToDDL::m_fname
private

Definition at line 54 of file OutputDDToDDL.cc.

Referenced by beginRun(), and OutputDDToDDL().

int OutputDDToDDL::m_rotNumSeed
private

Definition at line 53 of file OutputDDToDDL.cc.

Referenced by beginRun(), and OutputDDToDDL().

std::ostream* OutputDDToDDL::m_xos
private

Definition at line 55 of file OutputDDToDDL.cc.

Referenced by beginRun(), OutputDDToDDL(), and ~OutputDDToDDL().