CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CalibratedPhotonProducerRun2T< T > Class Template Reference
Inheritance diagram for CalibratedPhotonProducerRun2T< T >:
edm::stream::EDProducer<>

Public Member Functions

 CalibratedPhotonProducerRun2T (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~CalibratedPhotonProducerRun2T () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Attributes

PhotonEnergyCalibratorRun2 theEnCorrectorRun2
 
edm::EDGetTokenT< edm::View< T > > thePhotonToken
 
std::unique_ptr< TRandom > theSemiDeterministicRng
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

template<typename T>
class CalibratedPhotonProducerRun2T< T >

Definition at line 20 of file CalibratedPhotonProducersRun2.cc.

Constructor & Destructor Documentation

template<typename T >
CalibratedPhotonProducerRun2T< T >::CalibratedPhotonProducerRun2T ( const edm::ParameterSet conf)
explicit

Definition at line 33 of file CalibratedPhotonProducersRun2.cc.

References edm::ParameterSet::existsAs(), edm::ParameterSet::getParameter(), PhotonEnergyCalibratorRun2::initPrivateRng(), CalibratedPhotonProducerRun2T< T >::theEnCorrectorRun2, and CalibratedPhotonProducerRun2T< T >::theSemiDeterministicRng.

33  :
34  thePhotonToken(consumes<edm::View<T> >(conf.getParameter<edm::InputTag>("photons"))),
35  theEnCorrectorRun2(conf.getParameter<bool>("isMC"), conf.getParameter<bool>("isSynchronization"), conf.getParameter<std::string >("correctionFile")) {
36 
37  if (conf.existsAs<bool>("semiDeterministic") && conf.getParameter<bool>("semiDeterministic")) {
38  theSemiDeterministicRng.reset(new TRandom2());
40  }
41  produces<std::vector<T> >();
42 }
T getParameter(std::string const &) const
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
edm::EDGetTokenT< edm::View< T > > thePhotonToken
PhotonEnergyCalibratorRun2 theEnCorrectorRun2
std::unique_ptr< TRandom > theSemiDeterministicRng
template<typename T >
CalibratedPhotonProducerRun2T< T >::~CalibratedPhotonProducerRun2T ( )
override

Definition at line 45 of file CalibratedPhotonProducersRun2.cc.

46 {}

Member Function Documentation

template<typename T >
void CalibratedPhotonProducerRun2T< T >::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 50 of file CalibratedPhotonProducersRun2.cc.

References PhotonEnergyCalibratorRun2::calibrate(), edm::EventID::event(), plotBeamSpotDB::first, edm::Event::getByToken(), edm::EventBase::id(), recoMuon::in, createfilelist::int, edm::EventID::luminosityBlock(), M_PI, SiStripPI::max, eostools::move(), MillePedeFileConverter_cfg::out, edm::Event::put(), edm::EventID::run(), SurveyInfoScenario_cff::seed, edm::Event::streamID(), CalibratedPhotonProducerRun2T< T >::theEnCorrectorRun2, CalibratedPhotonProducerRun2T< T >::thePhotonToken, and CalibratedPhotonProducerRun2T< T >::theSemiDeterministicRng.

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

50  {
51 
53  iEvent.getByToken(thePhotonToken, in);
54 
55  if (theSemiDeterministicRng && !in->empty()) { // no need to set a seed if in is empty
56  const auto & first = in->front();
57  std::seed_seq seeder = {int(iEvent.id().event()), int(iEvent.id().luminosityBlock()), int(iEvent.id().run()),
58  int(in->size()), int(std::numeric_limits<int>::max()*first.phi()/M_PI) & 0xFFF, int(first.pdgId())};
59  uint32_t seed = 0, tries = 10;
60  do {
61  seeder.generate(&seed,&seed+1); tries++;
62  } while (seed == 0 && tries < 10);
63  theSemiDeterministicRng->SetSeed(seed ? seed : iEvent.id().event());
64  }
65 
66  std::unique_ptr<std::vector<T> > out(new std::vector<T>());
67  out->reserve(in->size());
68 
69  for (const T &ele : *in) {
70  out->push_back(ele);
71  theEnCorrectorRun2.calibrate(out->back(), iEvent.id().run(), iEvent.streamID());
72  }
73 
74  iEvent.put(std::move(out));
75 }
RunNumber_t run() const
Definition: EventID.h:39
EventNumber_t event() const
Definition: EventID.h:41
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
edm::EDGetTokenT< edm::View< T > > thePhotonToken
LuminosityBlockNumber_t luminosityBlock() const
Definition: EventID.h:40
PhotonEnergyCalibratorRun2 theEnCorrectorRun2
#define M_PI
void calibrate(SimplePhoton &photon, edm::StreamID const &id=edm::StreamID::invalidStreamID()) const
edm::EventID id() const
Definition: EventBase.h:60
StreamID streamID() const
Definition: Event.h:96
long double T
def move(src, dest)
Definition: eostools.py:510
std::unique_ptr< TRandom > theSemiDeterministicRng

Member Data Documentation

template<typename T >
PhotonEnergyCalibratorRun2 CalibratedPhotonProducerRun2T< T >::theEnCorrectorRun2
private
template<typename T >
edm::EDGetTokenT<edm::View<T> > CalibratedPhotonProducerRun2T< T >::thePhotonToken
private
template<typename T >
std::unique_ptr<TRandom> CalibratedPhotonProducerRun2T< T >::theSemiDeterministicRng
private