|
| DumpFWRecoGeometry (const edm::ParameterSet &config) |
|
virtual | ~DumpFWRecoGeometry (void) |
|
void | callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func) |
|
| EDAnalyzer () |
|
ModuleDescription const & | moduleDescription () const |
|
std::string | workerType () const |
|
virtual | ~EDAnalyzer () |
|
std::vector< ConsumesInfo > | consumesInfo () const |
|
| EDConsumerBase () |
|
ProductHolderIndexAndSkipBit | indexFrom (EDGetToken, BranchType, TypeID const &) const |
|
void | itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const |
|
void | itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const |
|
std::vector
< ProductHolderIndexAndSkipBit >
const & | itemsToGetFromEvent () const |
|
void | labelsForToken (EDGetToken iToken, Labels &oLabels) const |
|
void | modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const |
|
void | modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const |
|
bool | registeredToConsume (ProductHolderIndex, bool, BranchType) const |
|
bool | registeredToConsumeMany (TypeID const &, BranchType) const |
|
void | updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &) |
|
virtual | ~EDConsumerBase () |
|
Definition at line 14 of file DumpFWRecoGeometry.cc.
Definition at line 30 of file DumpFWRecoGeometry.cc.
T getUntrackedParameter(std::string const &, T const &) const
std::string m_outputFileName
virtual DumpFWRecoGeometry::~DumpFWRecoGeometry |
( |
void |
| ) |
|
|
inlinevirtual |
Implements edm::EDAnalyzer.
Definition at line 37 of file DumpFWRecoGeometry.cc.
References end, mergeVDriftHistosByStation::file, edm::EventSetup::get(), i, m_outputFileName, m_tag, and MainPageGenerator::tree.
45 TTree *
tree =
new TTree(
"idToGeo",
"raw detector id association with geometry");
51 Float_t v_translation[3];
54 tree->SetBranchStyle( 0 );
55 tree->Branch(
"id", &v_id,
"id/i" );
56 tree->Branch(
"points", &v_vertex,
"points[24]/F" );
57 tree->Branch(
"topology", &v_params,
"topology[9]/F" );
58 tree->Branch(
"shape", &v_shape,
"shape[5]/F" );
59 tree->Branch(
"translation", &v_translation,
"translation[3]/F" );
60 tree->Branch(
"matrix", &v_matrix,
"matrix[9]/F" );
63 end = geoh.product()->idToName.end();
67 for(
unsigned int i = 0;
i < 24; ++
i )
68 v_vertex[
i] = it->points[
i];
69 for(
unsigned int i = 0;
i < 9; ++
i )
70 v_params[
i] = it->topology[
i];
71 for(
unsigned int i = 0;
i < 5; ++
i )
72 v_shape[
i] = it->shape[
i];
73 for(
unsigned int i = 0;
i < 3; ++
i )
74 v_translation[
i] = it->translation[
i];
75 for(
unsigned int i = 0;
i < 9; ++
i )
76 v_matrix[
i] = it->matrix[
i];
82 file.WriteTObject(
new TNamed(
"CMSSW_VERSION", gSystem->Getenv(
"CMSSW_VERSION" )));
83 file.WriteTObject(
new TNamed(
"tag",
m_tag.c_str()));
84 file.WriteTObject(&geoh.product()->extraDet,
"ExtraDetectors");
std::vector< FWRecoGeom::Info >::const_iterator InfoMapItr
std::string m_outputFileName
void DumpFWRecoGeometry::beginJob |
( |
void |
| ) |
|
|
overrideprivatevirtual |
void DumpFWRecoGeometry::endJob |
( |
void |
| ) |
|
|
overrideprivatevirtual |
int DumpFWRecoGeometry::m_level |
|
private |
std::string DumpFWRecoGeometry::m_outputFileName |
|
private |
std::string DumpFWRecoGeometry::m_tag |
|
private |