CMS 3D CMS Logo

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

#include <GBRWrap/EGEnergyAnalyzer/src/EGEnergyAnalyzer.cc>

Inheritance diagram for EGEnergyAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 EGEnergyAnalyzer (const edm::ParameterSet &)
 
 ~EGEnergyAnalyzer ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &) override
 
virtual void beginJob () override
 
virtual void beginLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &) override
 
virtual void beginRun (edm::Run const &, edm::EventSetup const &) override
 
virtual void endJob () override
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &) override
 
virtual void endRun (edm::Run const &, edm::EventSetup const &) override
 

Private Attributes

EGEnergyCorrector cordb
 
EGEnergyCorrector corfile
 
edm::EDGetTokenT
< EcalRecHitCollection
ebRHToken_
 
edm::EDGetTokenT
< EcalRecHitCollection
eeRHToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 48 of file EGEnergyAnalyzer.cc.

Constructor & Destructor Documentation

EGEnergyAnalyzer::EGEnergyAnalyzer ( const edm::ParameterSet iConfig)
explicit

Definition at line 73 of file EGEnergyAnalyzer.cc.

References ebRHToken_, eeRHToken_, and HLT_25ns14e33_v1_cff::InputTag.

73  {
74 
75  ebRHToken_ = consumes<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEB"));
76  eeRHToken_ = consumes<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEE"));
77 }
edm::EDGetTokenT< EcalRecHitCollection > ebRHToken_
edm::EDGetTokenT< EcalRecHitCollection > eeRHToken_
EGEnergyAnalyzer::~EGEnergyAnalyzer ( )

Definition at line 80 of file EGEnergyAnalyzer.cc.

81 {
82 
83  // do anything here that needs to be done at desctruction time
84  // (e.g. close files, deallocate resources etc.)
85 
86 }

Member Function Documentation

void EGEnergyAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 95 of file EGEnergyAnalyzer.cc.

References cordb, corfile, EGEnergyCorrector::CorrectedEnergyWithError(), ebRHToken_, eeRHToken_, edm::Event::getByLabel(), EGEnergyCorrector::Initialize(), and EGEnergyCorrector::IsInitialized().

96 {
97  using namespace edm;
98 
99  if (!corfile.IsInitialized()) {
100  corfile.Initialize(iSetup,"/afs/cern.ch/user/b/bendavid/cmspublic/gbrv3ph.root");
101  //corfile.Initialize(iSetup,"wgbrph",true);
102  }
103 
104  if (!cordb.IsInitialized()) {
105  //cordb.Initialize(iSetup,"/afs/cern.ch/user/b/bendavid/cmspublic/regweights/gbrph.root");
106  cordb.Initialize(iSetup,"wgbrph",true);
107  }
108 
109  // get photon collection
110  Handle<reco::PhotonCollection> hPhotonProduct;
111  iEvent.getByLabel("photons",hPhotonProduct);
112 
113  EcalClusterLazyTools lazyTools(iEvent, iSetup, ebRHToken_, eeRHToken_);
114 
115  Handle<reco::VertexCollection> hVertexProduct;
116  iEvent.getByLabel("offlinePrimaryVerticesWithBS", hVertexProduct);
117 
118  for (reco::PhotonCollection::const_iterator it = hPhotonProduct->begin(); it!=hPhotonProduct->end(); ++it) {
119  std::pair<double,double> corsfile = corfile.CorrectedEnergyWithError(*it, *hVertexProduct, lazyTools, iSetup);
120  std::pair<double,double> corsdb = cordb.CorrectedEnergyWithError(*it, *hVertexProduct, lazyTools, iSetup);
121 
122 
123  printf("file: default = %5f, correction = %5f, uncertainty = %5f\n", it->energy(),corsfile.first,corsfile.second);
124  printf("db: default = %5f, correction = %5f, uncertainty = %5f\n", it->energy(),corsdb.first,corsdb.second);
125 
126  }
127 
128 
129 
130 
131 }
void Initialize(const edm::EventSetup &iSetup, std::string regweights, bool weightsFromDB=false)
EGEnergyCorrector corfile
edm::EDGetTokenT< EcalRecHitCollection > ebRHToken_
EGEnergyCorrector cordb
std::pair< double, double > CorrectedEnergyWithError(const reco::Photon &p, const reco::VertexCollection &vtxcol, EcalClusterLazyTools &clustertools, const edm::EventSetup &es)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:405
Bool_t IsInitialized() const
edm::EDGetTokenT< EcalRecHitCollection > eeRHToken_
void EGEnergyAnalyzer::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 136 of file EGEnergyAnalyzer.cc.

137 {
138 
139 
140 
141 }
void EGEnergyAnalyzer::beginLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &   
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 163 of file EGEnergyAnalyzer.cc.

164 {
165 }
void EGEnergyAnalyzer::beginRun ( edm::Run const &  ,
edm::EventSetup const &   
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 151 of file EGEnergyAnalyzer.cc.

152 {
153 }
void EGEnergyAnalyzer::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 145 of file EGEnergyAnalyzer.cc.

146 {
147 }
void EGEnergyAnalyzer::endLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &   
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 169 of file EGEnergyAnalyzer.cc.

170 {
171 }
void EGEnergyAnalyzer::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 157 of file EGEnergyAnalyzer.cc.

158 {
159 }
void EGEnergyAnalyzer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 175 of file EGEnergyAnalyzer.cc.

References edm::ConfigurationDescriptions::addDefault(), and edm::ParameterSetDescription::setUnknown().

175  {
176  //The following says we do not know what parameters are allowed so do no validation
177  // Please change this to state exactly what you do use, even if it is no parameters
179  desc.setUnknown();
180  descriptions.addDefault(desc);
181 }
void addDefault(ParameterSetDescription const &psetDescription)

Member Data Documentation

EGEnergyCorrector EGEnergyAnalyzer::cordb
private

Definition at line 67 of file EGEnergyAnalyzer.cc.

Referenced by analyze().

EGEnergyCorrector EGEnergyAnalyzer::corfile
private

Definition at line 66 of file EGEnergyAnalyzer.cc.

Referenced by analyze().

edm::EDGetTokenT<EcalRecHitCollection> EGEnergyAnalyzer::ebRHToken_
private

Definition at line 69 of file EGEnergyAnalyzer.cc.

Referenced by analyze(), and EGEnergyAnalyzer().

edm::EDGetTokenT<EcalRecHitCollection> EGEnergyAnalyzer::eeRHToken_
private

Definition at line 69 of file EGEnergyAnalyzer.cc.

Referenced by analyze(), and EGEnergyAnalyzer().