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
SiPixelDetInfoFileWriter Class Reference

#include <CalibTracker/SiPixelCommon/src/SiPixelDetInfoFileWriter.cc>

Inheritance diagram for SiPixelDetInfoFileWriter:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 SiPixelDetInfoFileWriter (const edm::ParameterSet &)
 
 ~SiPixelDetInfoFileWriter ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () 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 ()
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 
void beginJob ()
 
void beginRun (const edm::Run &, const edm::EventSetup &)
 

Private Attributes

std::string filePath_
 
std::ofstream outputFile_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- 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 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

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 26 of file SiPixelDetInfoFileWriter.h.

Constructor & Destructor Documentation

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

Definition at line 23 of file SiPixelDetInfoFileWriter.cc.

References edm::ParameterSet::getUntrackedParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

23  {
24 
25 
26  edm::LogInfo("SiPixelDetInfoFileWriter::SiPixelDetInfoFileWriter");
27 
28  filePath_ = iConfig.getUntrackedParameter<std::string>("FilePath",std::string("SiPixelDetInfo.dat"));
29 
30 }
T getUntrackedParameter(std::string const &, T const &) const
SiPixelDetInfoFileWriter::~SiPixelDetInfoFileWriter ( )

Definition at line 33 of file SiPixelDetInfoFileWriter.cc.

33  {
34 
35  edm::LogInfo("SiPixelDetInfoFileWriter::~SiPixelDetInfoFileWriter");
36 }

Member Function Documentation

void SiPixelDetInfoFileWriter::analyze ( const edm::Event ,
const edm::EventSetup  
)
privatevirtual

Implements edm::EDAnalyzer.

Definition at line 90 of file SiPixelDetInfoFileWriter.cc.

90  {
91 
92 }
void SiPixelDetInfoFileWriter::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 86 of file SiPixelDetInfoFileWriter.cc.

86  {
87 
88 }
void SiPixelDetInfoFileWriter::beginRun ( const edm::Run run,
const edm::EventSetup iSetup 
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 40 of file SiPixelDetInfoFileWriter.cc.

References cond::rpcobgas::detid, GeomDet::geographicalId(), edm::EventSetup::get(), PixelTopology::ncolumns(), PixelTopology::nrows(), and PixelGeomDetUnit::specificTopology().

40  {
41 
42  outputFile_.open(filePath_.c_str());
43 
44  if (outputFile_.is_open()){
45 
47 
48  iSetup.get<TrackerDigiGeometryRecord>().get( pDD );
49 
50  edm::LogInfo("SiPixelDetInfoFileWriter::beginJob - got geometry ")<<std::endl;
51  edm::LogInfo("SiPixelDetInfoFileWriter") <<" There are "<<pDD->detUnits().size() <<" detectors"<<std::endl;
52 
53  int nPixelDets = 0;
54 
55  for(TrackerGeometry::DetUnitContainer::const_iterator it = pDD->detUnits().begin(); it != pDD->detUnits().end(); it++){
56 
57  const PixelGeomDetUnit* mit = dynamic_cast<PixelGeomDetUnit const *>(*it);
58 
59  if(mit!=0){
60  nPixelDets++;
61  const PixelTopology & topol = mit->specificTopology();
62  // Get the module sizes.
63  int nrows = topol.nrows(); // rows in x
64  int ncols = topol.ncolumns(); // cols in y
65  uint32_t detid=(mit->geographicalId()).rawId();
66 
67 
68  outputFile_ << detid << " "<< ncols << " " << nrows << "\n";
69 
70  }
71  }
72  outputFile_.close();
73  edm::LogInfo("SiPixelDetInfoFileWriter::beginJob - Loop finished. ")<< nPixelDets << " Pixel DetUnits found " << std::endl;
74  }
75 
76  else {
77 
78  edm::LogError("SiPixelDetInfoFileWriter::beginJob - Unable to open file")<<endl;
79  return;
80 
81  }
82 
83 }
virtual int ncolumns() const =0
virtual int nrows() const =0
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:77
const T & get() const
Definition: EventSetup.h:56
virtual const PixelTopology & specificTopology() const
Returns a reference to the pixel proxy topology.

Member Data Documentation

std::string SiPixelDetInfoFileWriter::filePath_
private

Definition at line 43 of file SiPixelDetInfoFileWriter.h.

std::ofstream SiPixelDetInfoFileWriter::outputFile_
private

Definition at line 42 of file SiPixelDetInfoFileWriter.h.