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 hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () 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

◆ CalibratedPhotonProducerRun2T()

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

Definition at line 33 of file CalibratedPhotonProducersRun2.cc.

34  : thePhotonToken(consumes<edm::View<T> >(conf.getParameter<edm::InputTag>("photons"))),
35  theEnCorrectorRun2(conf.getParameter<bool>("isMC"),
36  conf.getParameter<bool>("isSynchronization"),
37  conf.getParameter<std::string>("correctionFile")) {
38  if (conf.existsAs<bool>("semiDeterministic") && conf.getParameter<bool>("semiDeterministic")) {
39  theSemiDeterministicRng.reset(new TRandom2());
41  }
42  produces<std::vector<T> >();
43 }

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

◆ ~CalibratedPhotonProducerRun2T()

template<typename T >
CalibratedPhotonProducerRun2T< T >::~CalibratedPhotonProducerRun2T ( )
override

Definition at line 46 of file CalibratedPhotonProducersRun2.cc.

46 {}

Member Function Documentation

◆ produce()

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

Definition at line 49 of file CalibratedPhotonProducersRun2.cc.

49  {
51  iEvent.getByToken(thePhotonToken, in);
52 
53  if (theSemiDeterministicRng && !in->empty()) { // no need to set a seed if in is empty
54  const auto &first = in->front();
55  std::seed_seq seeder = {int(iEvent.id().event()),
56  int(iEvent.id().luminosityBlock()),
57  int(iEvent.id().run()),
58  int(in->size()),
59  int(std::numeric_limits<int>::max() * first.phi() / M_PI) & 0xFFF,
60  int(first.pdgId())};
61  uint32_t seed = 0, tries = 10;
62  do {
63  seeder.generate(&seed, &seed + 1);
64  tries++;
65  } while (seed == 0 && tries < 10);
66  theSemiDeterministicRng->SetSeed(seed ? seed : iEvent.id().event());
67  }
68 
69  std::unique_ptr<std::vector<T> > out(new std::vector<T>());
70  out->reserve(in->size());
71 
72  for (const T &ele : *in) {
73  out->push_back(ele);
74  theEnCorrectorRun2.calibrate(out->back(), iEvent.id().run(), iEvent.streamID());
75  }
76 
77  iEvent.put(std::move(out));
78 }

References dqmdumpme::first, iEvent, recoMuon::in, createfilelist::int, M_PI, SiStripPI::max, eostools::move(), MillePedeFileConverter_cfg::out, and SurveyInfoScenario_cff::seed.

Member Data Documentation

◆ theEnCorrectorRun2

template<typename T >
PhotonEnergyCalibratorRun2 CalibratedPhotonProducerRun2T< T >::theEnCorrectorRun2
private

◆ thePhotonToken

template<typename T >
edm::EDGetTokenT<edm::View<T> > CalibratedPhotonProducerRun2T< T >::thePhotonToken
private

Definition at line 27 of file CalibratedPhotonProducersRun2.cc.

◆ theSemiDeterministicRng

template<typename T >
std::unique_ptr<TRandom> CalibratedPhotonProducerRun2T< T >::theSemiDeterministicRng
private
CalibratedPhotonProducerRun2T::theSemiDeterministicRng
std::unique_ptr< TRandom > theSemiDeterministicRng
Definition: CalibratedPhotonProducersRun2.cc:29
edm::ParameterSet::existsAs
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:160
edm::Handle
Definition: AssociativeIterator.h:50
dqmdumpme.first
first
Definition: dqmdumpme.py:55
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::View
Definition: CaloClusterFwd.h:14
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
recoMuon::in
Definition: RecoMuonEnumerators.h:6
createfilelist.int
int
Definition: createfilelist.py:10
iEvent
int iEvent
Definition: GenABIO.cc:224
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:50
CalibratedPhotonProducerRun2T::theEnCorrectorRun2
PhotonEnergyCalibratorRun2 theEnCorrectorRun2
Definition: CalibratedPhotonProducersRun2.cc:28
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
eostools.move
def move(src, dest)
Definition: eostools.py:511
T
long double T
Definition: Basic3DVectorLD.h:48
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
PhotonEnergyCalibratorRun2::calibrate
void calibrate(SimplePhoton &photon, edm::StreamID const &id=edm::StreamID::invalidStreamID()) const
Definition: PhotonEnergyCalibratorRun2.cc:34
CalibratedPhotonProducerRun2T::thePhotonToken
edm::EDGetTokenT< edm::View< T > > thePhotonToken
Definition: CalibratedPhotonProducersRun2.cc:27
PhotonEnergyCalibratorRun2::initPrivateRng
void initPrivateRng(TRandom *rnd)
Definition: PhotonEnergyCalibratorRun2.cc:24
edm::InputTag
Definition: InputTag.h:15
SurveyInfoScenario_cff.seed
seed
Definition: SurveyInfoScenario_cff.py:295