test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Protected Attributes
PhotonEnergyCalibratorRun2 Class Reference

#include <PhotonEnergyCalibratorRun2.h>

Public Member Functions

void calibrate (SimplePhoton &photon, edm::StreamID const &id=edm::StreamID::invalidStreamID()) const
 
void calibrate (reco::Photon &photon, unsigned int runNumber, edm::StreamID const &id=edm::StreamID::invalidStreamID()) const
 
void initPrivateRng (TRandom *rnd)
 
 PhotonEnergyCalibratorRun2 ()
 
 PhotonEnergyCalibratorRun2 (bool isMC, bool synchronization, std::string correctionFile)
 
 ~PhotonEnergyCalibratorRun2 ()
 

Protected Member Functions

double gauss (edm::StreamID const &id) const
 

Protected Attributes

EnergyScaleCorrection_class _correctionRetriever
 
bool isMC_
 
TRandom * rng_
 
std::vector< double > scales_
 
std::vector< double > smearings_
 
bool synchronization_
 

Detailed Description

Definition at line 11 of file PhotonEnergyCalibratorRun2.h.

Constructor & Destructor Documentation

PhotonEnergyCalibratorRun2::PhotonEnergyCalibratorRun2 ( )
inline

Definition at line 14 of file PhotonEnergyCalibratorRun2.h.

14 {}
PhotonEnergyCalibratorRun2::PhotonEnergyCalibratorRun2 ( bool  isMC,
bool  synchronization,
std::string  correctionFile 
)

Definition at line 7 of file PhotonEnergyCalibratorRun2.cc.

9  :
10  isMC_(isMC), synchronization_(synchronization),
11  rng_(0),
12  _correctionRetriever(correctionFile) // here is opening the files and reading thecorrections
13 {}
EnergyScaleCorrection_class _correctionRetriever
PhotonEnergyCalibratorRun2::~PhotonEnergyCalibratorRun2 ( )

Definition at line 15 of file PhotonEnergyCalibratorRun2.cc.

16 {}

Member Function Documentation

void PhotonEnergyCalibratorRun2::calibrate ( SimplePhoton photon,
edm::StreamID const &  id = edm::StreamID::invalidStreamID() 
) const

Correct this electron. StreamID is needed when used with CMSSW Random Number Generator

Definition at line 28 of file PhotonEnergyCalibratorRun2.cc.

References _correctionRetriever, funct::abs(), assert(), corr, gauss(), SimplePhoton::getEta(), SimplePhoton::getNewEnergy(), SimplePhoton::getNewEnergyError(), SimplePhoton::getR9(), SimplePhoton::getRunNumber(), EnergyScaleCorrection_class::getSmearingSigma(), SimplePhoton::isEB(), SimplePhoton::isMC(), isMC_, pileupReCalc_HLTpaths::scale, EnergyScaleCorrection_class::ScaleCorrection(), SimplePhoton::setNewEnergy(), and SimplePhoton::setNewEnergyError().

Referenced by calibrate().

28  {
29  assert(isMC_ == photon.isMC());
30  float smear = 0.0, scale = 1.0;
31  float aeta = std::abs(photon.getEta()); //, r9 = photon.getR9();
32  float et = photon.getNewEnergy()/cosh(aeta);
33 
34  scale = _correctionRetriever.ScaleCorrection(photon.getRunNumber(), photon.isEB(), photon.getR9(), aeta, et);
35  smear = _correctionRetriever.getSmearingSigma(photon.getRunNumber(), photon.isEB(), photon.getR9(), aeta, et, 0., 0.);
36 
37  double newEcalEnergy, newEcalEnergyError;
38  if (isMC_) {
39  double corr = 1.0 + smear * gauss(id);
40  newEcalEnergy = photon.getNewEnergy() * corr;
41  newEcalEnergyError = std::hypot(photon.getNewEnergyError() * corr, smear * newEcalEnergy);
42  } else {
43  newEcalEnergy = photon.getNewEnergy() * scale;
44  newEcalEnergyError = std::hypot(photon.getNewEnergyError() * scale, smear * newEcalEnergy);
45  }
46  photon.setNewEnergy(newEcalEnergy);
47  photon.setNewEnergyError(newEcalEnergyError);
48 
49 }
float getR9() const
Definition: SimplePhoton.h:53
float getSmearingSigma(int runNumber, bool isEBEle, float R9Ele, float etaSCEle, float EtEle, paramSmear_t par, float nSigma=0.) const
double getNewEnergy() const
Definition: SimplePhoton.h:44
int getRunNumber() const
Definition: SimplePhoton.h:55
assert(m_qm.get())
void setNewEnergyError(double newEnergyError)
Definition: SimplePhoton.h:61
float ScaleCorrection(unsigned int runNumber, bool isEBEle, double R9Ele, double etaSCEle, double EtEle) const
method to get energy scale corrections
double getEta() const
Definition: SimplePhoton.h:52
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double getNewEnergyError() const
Definition: SimplePhoton.h:45
double gauss(edm::StreamID const &id) const
JetCorrectorParameters corr
Definition: classes.h:5
void setNewEnergy(double newEnergy)
Definition: SimplePhoton.h:60
bool isEB() const
Definition: SimplePhoton.h:56
bool isMC() const
Definition: SimplePhoton.h:57
EnergyScaleCorrection_class _correctionRetriever
void PhotonEnergyCalibratorRun2::calibrate ( reco::Photon photon,
unsigned int  runNumber,
edm::StreamID const &  id = edm::StreamID::invalidStreamID() 
) const

Correct this electron. StreamID is needed when used with CMSSW Random Number Generator

Definition at line 22 of file PhotonEnergyCalibratorRun2.cc.

References calibrate(), isMC_, PileupJetIDParams_cfi::simple, and SimplePhoton::writeTo().

22  {
24  calibrate(simple, id);
25  simple.writeTo(photon);
26 }
void calibrate(SimplePhoton &photon, edm::StreamID const &id=edm::StreamID::invalidStreamID()) const
double PhotonEnergyCalibratorRun2::gauss ( edm::StreamID const &  id) const
protected

Return a number distributed as a unit gaussian, drawn from the private RNG if initPrivateRng was called, or from the CMSSW RandomNumberGenerator service If synchronization is set to true, it returns a fixed number (1.0)

Definition at line 51 of file PhotonEnergyCalibratorRun2.cc.

References Exception, edm::RandomNumberGenerator::getEngine(), edm::Service< T >::isAvailable(), rng_, and synchronization_.

Referenced by calibrate().

51  {
52  if (synchronization_) return 1.0;
53  if (rng_) {
54  return rng_->Gaus();
55  } else {
57  if ( !rng.isAvailable() ) {
58  throw cms::Exception("Configuration")
59  << "XXXXXXX requires the RandomNumberGeneratorService\n"
60  "which is not present in the configuration file. You must add the service\n"
61  "in the configuration file or remove the modules that require it.";
62  }
63  CLHEP::RandGaussQ gaussDistribution(rng->getEngine(id), 0.0, 1.0);
64  return gaussDistribution.fire();
65  }
66 }
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
bool isAvailable() const
Definition: Service.h:46
void PhotonEnergyCalibratorRun2::initPrivateRng ( TRandom *  rnd)

Initialize with a random number generator (if not done, it will use the CMSSW service) Caller code owns the TRandom.

Definition at line 18 of file PhotonEnergyCalibratorRun2.cc.

References rng_.

18  {
19  rng_ = rnd;
20 }

Member Data Documentation

EnergyScaleCorrection_class PhotonEnergyCalibratorRun2::_correctionRetriever
protected

Definition at line 44 of file PhotonEnergyCalibratorRun2.h.

Referenced by calibrate().

bool PhotonEnergyCalibratorRun2::isMC_
protected

Definition at line 35 of file PhotonEnergyCalibratorRun2.h.

Referenced by calibrate().

TRandom* PhotonEnergyCalibratorRun2::rng_
protected

Definition at line 36 of file PhotonEnergyCalibratorRun2.h.

Referenced by gauss(), and initPrivateRng().

std::vector<double> PhotonEnergyCalibratorRun2::scales_
protected

Definition at line 38 of file PhotonEnergyCalibratorRun2.h.

std::vector<double> PhotonEnergyCalibratorRun2::smearings_
protected

Definition at line 37 of file PhotonEnergyCalibratorRun2.h.

bool PhotonEnergyCalibratorRun2::synchronization_
protected

Definition at line 35 of file PhotonEnergyCalibratorRun2.h.

Referenced by gauss().