CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
SiStripApvGainFakeESSource Class Reference
Inheritance diagram for SiStripApvGainFakeESSource:
edm::ESProducer edm::EventSetupRecordIntervalFinder edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Types

typedef std::shared_ptr< SiStripApvGainReturnType
 
- Public Types inherited from edm::eventsetup::DataProxyProvider
typedef std::vector< std::pair< DataKey, edm::propagate_const< std::shared_ptr< DataProxy > > > > KeyedProxies
 
typedef std::vector< EventSetupRecordKeyKeys
 
typedef std::map< EventSetupRecordKey, KeyedProxiesRecordProxies
 

Public Member Functions

ReturnType produce (const SiStripApvGainRcd &)
 
void setIntervalFor (const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &iov, edm::ValidityInterval &iValidity) override
 
 SiStripApvGainFakeESSource (const edm::ParameterSet &)
 
 ~SiStripApvGainFakeESSource () override
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
 ~ESProducer ()(false) override
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
void newInterval (const eventsetup::EventSetupRecordKey &iRecordType, const ValidityInterval &iInterval) override
 overrides DataProxyProvider method More...
 
 ~ESProxyFactoryProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
 DataProxyProvider ()
 
const ComponentDescriptiondescription () const
 
bool isUsingRecord (const EventSetupRecordKey &) const
 
const KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey) const
 
void resetProxies (const EventSetupRecordKey &iRecordType)
 
void resetProxiesIfTransient (const EventSetupRecordKey &iRecordType)
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider () noexcept(false)
 
- Public Member Functions inherited from edm::EventSetupRecordIntervalFinder
const eventsetup::ComponentDescriptiondescriptionForFinder () const
 
 EventSetupRecordIntervalFinder ()
 
std::set< eventsetup::EventSetupRecordKeyfindingForRecords () const
 
const ValidityIntervalfindIntervalFor (const eventsetup::EventSetupRecordKey &, const IOVSyncValue &)
 
void setDescriptionForFinder (const eventsetup::ComponentDescription &iDescription)
 
virtual ~EventSetupRecordIntervalFinder () noexcept(false)
 

Private Attributes

edm::FileInPath m_file
 
std::string m_genMode
 
double m_meanGain
 
double m_minimumPosValue
 
uint32_t m_printDebug
 
double m_sigmaGain
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::ESProducer
template<typename T >
void setWhatProduced (T *iThis, const es::Label &iLabel=es::Label())
 
template<typename T >
void setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
void setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
void setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel=es::Label())
 
- Protected Member Functions inherited from edm::ESProxyFactoryProducer
template<class TFactory >
void registerFactory (std::unique_ptr< TFactory > iFactory, const std::string &iLabel=std::string())
 
virtual void registerFactoryWithKey (const eventsetup::EventSetupRecordKey &iRecord, std::unique_ptr< eventsetup::ProxyFactoryBase > iFactory, const std::string &iLabel=std::string())
 
void registerProxies (const eventsetup::EventSetupRecordKey &iRecord, KeyedProxies &aProxyList) override
 override DataProxyProvider method More...
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
void eraseAll (const EventSetupRecordKey &iRecordKey)
 deletes all the Proxies in aStream More...
 
void invalidateProxies (const EventSetupRecordKey &iRecordKey)
 
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &)
 
- Protected Member Functions inherited from edm::EventSetupRecordIntervalFinder
template<class T >
void findingRecord ()
 
void findingRecordWithKey (const eventsetup::EventSetupRecordKey &)
 

Detailed Description

Description: "fake" SiStripApvGain ESProducer - fixed (or gaussian-generated) value from configuration for all gains

Implementation: Port of SiStripApvGainGenerator and templated fake ESSource to an edm::ESProducer

Definition at line 25 of file SiStripApvGainFakeESSource.cc.

Member Typedef Documentation

Definition at line 32 of file SiStripApvGainFakeESSource.cc.

Constructor & Destructor Documentation

SiStripApvGainFakeESSource::SiStripApvGainFakeESSource ( const edm::ParameterSet iConfig)

Definition at line 48 of file SiStripApvGainFakeESSource.cc.

References edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), m_file, m_genMode, m_meanGain, m_minimumPosValue, m_printDebug, m_sigmaGain, edm::ESProducer::setWhatProduced(), and AlCaHLTBitMon_QueryRunRegistry::string.

49 {
50  setWhatProduced(this);
51  findingRecord<SiStripApvGainRcd>();
52 
53  m_genMode = iConfig.getParameter<std::string>("genMode");
54  m_meanGain = iConfig.getParameter<double>("MeanGain");
55  m_sigmaGain = iConfig.getParameter<double>("SigmaGain");
56  m_minimumPosValue = iConfig.getParameter<double>("MinPositiveGain");
57  m_file = iConfig.getParameter<edm::FileInPath>("file");
58  m_printDebug = iConfig.getUntrackedParameter<uint32_t>("printDebug", 5);
59 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
SiStripApvGainFakeESSource::~SiStripApvGainFakeESSource ( )
override

Definition at line 61 of file SiStripApvGainFakeESSource.cc.

61 {}

Member Function Documentation

SiStripApvGainFakeESSource::ReturnType SiStripApvGainFakeESSource::produce ( const SiStripApvGainRcd iRecord)

Definition at line 70 of file SiStripApvGainFakeESSource.cc.

References KineDebug3::count(), DEFINE_FWK_EVENTSETUP_SOURCE, cmsRelvalreport::exit, edm::FileInPath::fullPath(), LogDebug, m_file, m_genMode, m_meanGain, m_minimumPosValue, m_printDebug, m_sigmaGain, and matplotRender::reader.

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

71 {
72  using namespace edm::es;
73 
74  std::shared_ptr<SiStripApvGain> apvGain{new SiStripApvGain};
75 
77 
78  uint32_t count{0};
79  for ( const auto& elm : reader.getAllData() ) {
80  std::vector<float> theSiStripVector;
81  for ( unsigned short j=0; j < elm.second.nApvs; ++j ){
82  float gainValue;
83  if ( m_genMode == "default" ) {
84  gainValue = m_meanGain;
85  } else if ( m_genMode == "gaussian" ) {
86  gainValue = CLHEP::RandGauss::shoot(m_meanGain, m_sigmaGain);
87  if ( gainValue <= m_minimumPosValue ) {
88  gainValue = m_minimumPosValue;
89  }
90  } else {
91  LogDebug("SiStripApvGain") << "ERROR: wrong genMode specifier : " << m_genMode << ", please select one of \"default\" or \"gaussian\"";
92  exit(1);
93  }
94 
95  if ( count < m_printDebug ) {
96  edm::LogInfo("SiStripApvGainGenerator") << "detid: " << elm.first << " Apv: " << j << " gain: " << gainValue;
97  }
98  theSiStripVector.push_back(gainValue);
99  }
100  ++count;
101 
102  if ( ! apvGain->put(elm.first, SiStripApvGain::Range{theSiStripVector.begin(),theSiStripVector.end()}) ) {
103  edm::LogError("SiStripApvGainGenerator") << " detid already exists";
104  }
105  }
106 
107  return apvGain;
108 }
#define LogDebug(id)
std::pair< ContainerIterator, ContainerIterator > Range
std::string fullPath() const
Definition: FileInPath.cc:184
void SiStripApvGainFakeESSource::setIntervalFor ( const edm::eventsetup::EventSetupRecordKey ,
const edm::IOVSyncValue iov,
edm::ValidityInterval iValidity 
)
overridevirtual

Implements edm::EventSetupRecordIntervalFinder.

Definition at line 63 of file SiStripApvGainFakeESSource.cc.

References edm::IOVSyncValue::beginOfTime(), and edm::IOVSyncValue::endOfTime().

64 {
65  iValidity = edm::ValidityInterval{iov.beginOfTime(), iov.endOfTime()};
66 }
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:97
static const IOVSyncValue & beginOfTime()

Member Data Documentation

edm::FileInPath SiStripApvGainFakeESSource::m_file
private

Definition at line 40 of file SiStripApvGainFakeESSource.cc.

Referenced by produce(), and SiStripApvGainFakeESSource().

std::string SiStripApvGainFakeESSource::m_genMode
private

Definition at line 36 of file SiStripApvGainFakeESSource.cc.

Referenced by produce(), and SiStripApvGainFakeESSource().

double SiStripApvGainFakeESSource::m_meanGain
private

Definition at line 37 of file SiStripApvGainFakeESSource.cc.

Referenced by produce(), and SiStripApvGainFakeESSource().

double SiStripApvGainFakeESSource::m_minimumPosValue
private

Definition at line 39 of file SiStripApvGainFakeESSource.cc.

Referenced by produce(), and SiStripApvGainFakeESSource().

uint32_t SiStripApvGainFakeESSource::m_printDebug
private

Definition at line 41 of file SiStripApvGainFakeESSource.cc.

Referenced by produce(), and SiStripApvGainFakeESSource().

double SiStripApvGainFakeESSource::m_sigmaGain
private

Definition at line 38 of file SiStripApvGainFakeESSource.cc.

Referenced by produce(), and SiStripApvGainFakeESSource().