CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
SiStripApvGainReader Class Reference

#include <SiStripApvGainReader.h>

Inheritance diagram for SiStripApvGainReader:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
 SiStripApvGainReader (const edm::ParameterSet &)
 
 ~SiStripApvGainReader () override
 
- 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
 
 ~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 const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
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
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

std::string formatedOutput_
 
uint32_t gainType_
 
bool printdebug_
 

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

Definition at line 19 of file SiStripApvGainReader.h.

Constructor & Destructor Documentation

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

Definition at line 15 of file SiStripApvGainReader.cc.

15  :
16  printdebug_(iConfig.getUntrackedParameter<bool>("printDebug",true)),
17  formatedOutput_(iConfig.getUntrackedParameter<std::string>("outputFile","")),
18  gainType_ (iConfig.getUntrackedParameter<uint32_t>("gainType",1))
19  {}
T getUntrackedParameter(std::string const &, T const &) const
SiStripApvGainReader::~SiStripApvGainReader ( )
override

Definition at line 21 of file SiStripApvGainReader.cc.

21 {}

Member Function Documentation

void SiStripApvGainReader::analyze ( const edm::Event e,
const edm::EventSetup iSetup 
)
override

Definition at line 23 of file SiStripApvGainReader.cc.

References formatedOutput_, gainType_, edm::EventSetup::get(), SiStripGain::getApvGain(), SiStripGain::getDetIds(), SiStripGain::getRange(), triggerObjects_cff::id, and printdebug_.

23  {
24 
25  edm::ESHandle<SiStripGain> SiStripApvGain_;
26  iSetup.get<SiStripGainRcd>().get(SiStripApvGain_);
27  edm::LogInfo("SiStripApvGainReader") << "[SiStripApvGainReader::analyze] End Reading SiStripApvGain" << std::endl;
28 
29  std::vector<uint32_t> detid;
30  SiStripApvGain_->getDetIds(detid);
31  edm::LogInfo("Number of detids ") << detid.size() << std::endl;
32 
33  FILE* pFile=nullptr;
34  if(formatedOutput_!="")pFile=fopen(formatedOutput_.c_str(), "w");
35 
36  for (size_t id=0;id<detid.size();id++){
37  SiStripApvGain::Range range=SiStripApvGain_->getRange(detid[id], gainType_);
38  if(printdebug_){
39  int apv=0;
40  for(int it=0;it<range.second-range.first;it++){
41  edm::LogInfo("SiStripApvGainReader") << "detid " << detid[id] << " \t " << apv++ << " \t " << SiStripApvGain_->getApvGain(it,range) << std::endl;
42  }
43  }
44 
45  if(pFile){
46  fprintf(pFile,"%i ",detid[id]);
47  for(int it=0;it<range.second-range.first;it++){
48  fprintf(pFile,"%f ", SiStripApvGain_->getApvGain(it,range) );
49  }fprintf(pFile, "\n");
50  }
51 
52  }
53 
54  if(pFile)fclose(pFile);
55 }
static float getApvGain(const uint16_t &apv, const SiStripApvGain::Range &range)
Definition: SiStripGain.h:73
std::pair< ContainerIterator, ContainerIterator > Range
void getDetIds(std::vector< uint32_t > &DetIds_) const
ATTENTION: we assume the detIds are the same as those from the first gain.
Definition: SiStripGain.cc:108
const T & get() const
Definition: EventSetup.h:55
const SiStripApvGain::Range getRange(uint32_t detID) const
Definition: SiStripGain.h:70

Member Data Documentation

std::string SiStripApvGainReader::formatedOutput_
private

Definition at line 29 of file SiStripApvGainReader.h.

Referenced by analyze().

uint32_t SiStripApvGainReader::gainType_
private

Definition at line 30 of file SiStripApvGainReader.h.

Referenced by analyze().

bool SiStripApvGainReader::printdebug_
private

Definition at line 28 of file SiStripApvGainReader.h.

Referenced by analyze().