CMS 3D CMS Logo

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 () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () 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 &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
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
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
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 analyze (const edm::Event &, const edm::EventSetup &) override
 
void beginJob () override
 
void beginRun (const edm::Run &, const edm::EventSetup &) override
 

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 &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (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)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (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::SiPixelDetInfoFileWriter ( const edm::ParameterSet iConfig)
explicit

Definition at line 21 of file SiPixelDetInfoFileWriter.cc.

21  {
22  edm::LogInfo("SiPixelDetInfoFileWriter::SiPixelDetInfoFileWriter");
23 
24  filePath_ = iConfig.getUntrackedParameter<std::string>("FilePath", std::string("SiPixelDetInfo.dat"));
25 }

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

◆ ~SiPixelDetInfoFileWriter()

SiPixelDetInfoFileWriter::~SiPixelDetInfoFileWriter ( )
override

Definition at line 27 of file SiPixelDetInfoFileWriter.cc.

27  {
28  edm::LogInfo("SiPixelDetInfoFileWriter::~SiPixelDetInfoFileWriter");
29 }

Member Function Documentation

◆ analyze()

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

Implements edm::EDAnalyzer.

Definition at line 71 of file SiPixelDetInfoFileWriter.cc.

71 {}

◆ beginJob()

void SiPixelDetInfoFileWriter::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 69 of file SiPixelDetInfoFileWriter.cc.

69 {}

◆ beginRun()

void SiPixelDetInfoFileWriter::beginRun ( const edm::Run run,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 31 of file SiPixelDetInfoFileWriter.cc.

31  {
32  outputFile_.open(filePath_.c_str());
33 
34  if (outputFile_.is_open()) {
36 
37  iSetup.get<TrackerDigiGeometryRecord>().get(pDD);
38 
39  edm::LogInfo("SiPixelDetInfoFileWriter::beginJob - got geometry ") << std::endl;
40  edm::LogInfo("SiPixelDetInfoFileWriter") << " There are " << pDD->detUnits().size() << " detectors" << std::endl;
41 
42  int nPixelDets = 0;
43 
44  for (const auto &it : pDD->detUnits()) {
45  const PixelGeomDetUnit *mit = dynamic_cast<PixelGeomDetUnit const *>(it);
46 
47  if (mit != nullptr) {
48  nPixelDets++;
49  const PixelTopology &topol = mit->specificTopology();
50  // Get the module sizes.
51  int nrows = topol.nrows(); // rows in x
52  int ncols = topol.ncolumns(); // cols in y
53  uint32_t detid = (mit->geographicalId()).rawId();
54 
55  outputFile_ << detid << " " << ncols << " " << nrows << "\n";
56  }
57  }
58  outputFile_.close();
59  edm::LogInfo("SiPixelDetInfoFileWriter::beginJob - Loop finished. ")
60  << nPixelDets << " Pixel DetUnits found " << std::endl;
61  }
62 
63  else {
64  edm::LogError("SiPixelDetInfoFileWriter::beginJob - Unable to open file") << endl;
65  return;
66  }
67 }

References TrackerGeometry::detUnits(), GeomDet::geographicalId(), edm::EventSetup::get(), get, hgcalPlots::ncols, PixelTopology::ncolumns(), PixelTopology::nrows(), and PixelGeomDetUnit::specificTopology().

Member Data Documentation

◆ filePath_

std::string SiPixelDetInfoFileWriter::filePath_
private

Definition at line 38 of file SiPixelDetInfoFileWriter.h.

◆ outputFile_

std::ofstream SiPixelDetInfoFileWriter::outputFile_
private

Definition at line 37 of file SiPixelDetInfoFileWriter.h.

hgcalPlots.ncols
ncols
Definition: hgcalPlots.py:105
SiPixelDetInfoFileWriter::filePath_
std::string filePath_
Definition: SiPixelDetInfoFileWriter.h:38
edm::LogInfo
Definition: MessageLogger.h:254
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
TrackerGeometry::detUnits
const DetContainer & detUnits() const override
Returm a vector of all GeomDet.
Definition: TrackerGeometry.h:61
PixelGeomDetUnit
Definition: PixelGeomDetUnit.h:15
TrackerDigiGeometryRecord
Definition: TrackerDigiGeometryRecord.h:15
edm::ESHandle< TrackerGeometry >
PixelTopology::ncolumns
virtual int ncolumns() const =0
PixelTopology
Definition: PixelTopology.h:10
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
GeomDet::geographicalId
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:64
edm::LogError
Definition: MessageLogger.h:183
PixelGeomDetUnit::specificTopology
virtual const PixelTopology & specificTopology() const
Returns a reference to the pixel proxy topology.
Definition: PixelGeomDetUnit.cc:17
get
#define get
SiPixelDetInfoFileWriter::outputFile_
std::ofstream outputFile_
Definition: SiPixelDetInfoFileWriter.h:37
PixelTopology::nrows
virtual int nrows() const =0