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
 
std::vector< ESProxyIndex > const & esGetTokenIndicesVector (edm::Transition iTrans) const
 
std::vector< ESRecordIndex > const & esGetTokenRecordIndicesVector (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::array< std::vector< ModuleDescription const * > *, NumBranchTypes > &modulesAll, std::vector< ModuleProcessName > &modulesInPreviousProcesses, 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
 
void selectInputProcessBlocks (ProductRegistry const &productRegistry, ProcessBlockHelperBase const &processBlockHelperBase)
 
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_
 
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecordtrackerGeomTokenBeginRun_
 

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 wantsInputProcessBlocks ()
 
static bool wantsProcessBlocks ()
 
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 = InEvent>
EDConsumerBaseAdaptor< B > consumes (edm::InputTag tag) noexcept
 
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<Transition Tr = Transition::Event>
constexpr auto esConsumes () noexcept
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<Transition Tr = Transition::Event>
auto esConsumes (ESInputTag tag) noexcept
 
template<Transition Tr = Transition::Event>
ESGetTokenGeneric esConsumes (eventsetup::EventSetupRecordKey const &iRecord, eventsetup::DataKey const &iKey)
 Used with EventSetupRecord::doGet. More...
 
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 28 of file SiPixelDetInfoFileWriter.h.

Constructor & Destructor Documentation

◆ SiPixelDetInfoFileWriter()

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

Definition at line 18 of file SiPixelDetInfoFileWriter.cc.

18  {
19  edm::LogInfo("SiPixelDetInfoFileWriter::SiPixelDetInfoFileWriter");
20 
21  trackerGeomTokenBeginRun_ = esConsumes<TrackerGeometry, TrackerDigiGeometryRecord, edm::Transition::BeginRun>();
22  filePath_ = iConfig.getUntrackedParameter<std::string>("FilePath", std::string("SiPixelDetInfo.dat"));
23 }

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

◆ ~SiPixelDetInfoFileWriter()

SiPixelDetInfoFileWriter::~SiPixelDetInfoFileWriter ( )
override

Definition at line 25 of file SiPixelDetInfoFileWriter.cc.

25  {
26  edm::LogInfo("SiPixelDetInfoFileWriter::~SiPixelDetInfoFileWriter");
27 }

Member Function Documentation

◆ analyze()

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

Implements edm::EDAnalyzer.

Definition at line 67 of file SiPixelDetInfoFileWriter.cc.

67 {}

◆ beginJob()

void SiPixelDetInfoFileWriter::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 65 of file SiPixelDetInfoFileWriter.cc.

65 {}

◆ beginRun()

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

Reimplemented from edm::EDAnalyzer.

Definition at line 29 of file SiPixelDetInfoFileWriter.cc.

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

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

Member Data Documentation

◆ filePath_

std::string SiPixelDetInfoFileWriter::filePath_
private

Definition at line 41 of file SiPixelDetInfoFileWriter.h.

◆ outputFile_

std::ofstream SiPixelDetInfoFileWriter::outputFile_
private

Definition at line 40 of file SiPixelDetInfoFileWriter.h.

◆ trackerGeomTokenBeginRun_

edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> SiPixelDetInfoFileWriter::trackerGeomTokenBeginRun_
private

Definition at line 39 of file SiPixelDetInfoFileWriter.h.

hgcalPlots.ncols
ncols
Definition: hgcalPlots.py:104
SiPixelDetInfoFileWriter::filePath_
std::string filePath_
Definition: SiPixelDetInfoFileWriter.h:41
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
TrackerGeometry::detUnits
const DetContainer & detUnits() const override
Returm a vector of all GeomDet.
Definition: TrackerGeometry.h:61
PixelGeomDetUnit
Definition: PixelGeomDetUnit.h:15
edm::ESHandle< TrackerGeometry >
PixelTopology::ncolumns
virtual int ncolumns() const =0
PixelTopology
Definition: PixelTopology.h:10
GeomDet::geographicalId
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:64
PixelGeomDetUnit::specificTopology
virtual const PixelTopology & specificTopology() const
Returns a reference to the pixel proxy topology.
Definition: PixelGeomDetUnit.cc:17
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:155
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
SiPixelDetInfoFileWriter::outputFile_
std::ofstream outputFile_
Definition: SiPixelDetInfoFileWriter.h:40
SiPixelDetInfoFileWriter::trackerGeomTokenBeginRun_
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > trackerGeomTokenBeginRun_
Definition: SiPixelDetInfoFileWriter.h:39
PixelTopology::nrows
virtual int nrows() const =0