CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

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<>
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

template<typename T>
class CalibratedPhotonProducerRun2T< T >

Definition at line 22 of file CalibratedPhotonProducersRun2.cc.

Constructor & Destructor Documentation

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

Definition at line 35 of file CalibratedPhotonProducersRun2.cc.

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

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

Definition at line 48 of file CalibratedPhotonProducersRun2.cc.

48 {}

Member Function Documentation

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

Definition at line 51 of file CalibratedPhotonProducersRun2.cc.

References edm::EventID::event(), first, edm::Event::getByToken(), edm::EventBase::id(), recoMuon::in, edm::EventID::luminosityBlock(), M_PI, SiStripPI::max, eostools::move(), submitPVResolutionJobs::out, edm::Event::put(), edm::EventID::run(), fileCollector::seed, and edm::Event::streamID().

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()),
58  int(iEvent.id().luminosityBlock()),
59  int(iEvent.id().run()),
60  int(in->size()),
61  int(std::numeric_limits<int>::max() * first.phi() / M_PI) & 0xFFF,
62  int(first.pdgId())};
63  uint32_t seed = 0, tries = 10;
64  do {
65  seeder.generate(&seed, &seed + 1);
66  tries++;
67  } while (seed == 0 && tries < 10);
68  theSemiDeterministicRng->SetSeed(seed ? seed : iEvent.id().event());
69  }
70 
71  std::unique_ptr<std::vector<T> > out(new std::vector<T>());
72  out->reserve(in->size());
73 
74  for (const T &ele : *in) {
75  out->push_back(ele);
76  theEnCorrectorRun2.calibrate(out->back(), iEvent.id().run(), iEvent.streamID());
77  }
78 
79  iEvent.put(std::move(out));
80 }
RunNumber_t run() const
Definition: EventID.h:38
EventNumber_t event() const
Definition: EventID.h:40
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
edm::EDGetTokenT< edm::View< T > > thePhotonToken
LuminosityBlockNumber_t luminosityBlock() const
Definition: EventID.h:39
def move
Definition: eostools.py:511
PhotonEnergyCalibratorRun2 theEnCorrectorRun2
#define M_PI
void calibrate(SimplePhoton &photon, edm::StreamID const &id=edm::StreamID::invalidStreamID()) const
edm::EventID id() const
Definition: EventBase.h:59
StreamID streamID() const
Definition: Event.h:98
long double T
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

Definition at line 29 of file CalibratedPhotonProducersRun2.cc.

template<typename T >
std::unique_ptr<TRandom> CalibratedPhotonProducerRun2T< T >::theSemiDeterministicRng
private