CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
JetCorrectorOnTheFly< Jet > Class Template Reference
Inheritance diagram for JetCorrectorOnTheFly< Jet >:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 JetCorrectorOnTheFly (const edm::ParameterSet &)
 
 ~JetCorrectorOnTheFly ()
 
- 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 ()
 

Private Types

typedef std::vector< JetJetCollection
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &) override
 
virtual void beginJob () override
 
virtual void endJob () override
 

Private Attributes

edm::Service< TFileServicefs
 
TH1F * mCorPt
 
bool mDebug
 
edm::EDGetTokenT
< reco::JetCorrector
mJetCorrector
 
edm::EDGetTokenT< JetCollectionmJetToken
 
double mMinRawJetPt
 
TH1F * mRawPt
 
edm::EDGetTokenT
< reco::VertexCollection
mVertexToken
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- 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

template<class Jet>
class JetCorrectorOnTheFly< Jet >

Definition at line 29 of file JetCorrectorOnTheFly.cc.

Member Typedef Documentation

template<class Jet >
typedef std::vector<Jet> JetCorrectorOnTheFly< Jet >::JetCollection
private

Definition at line 35 of file JetCorrectorOnTheFly.cc.

Constructor & Destructor Documentation

template<class Jet >
JetCorrectorOnTheFly< Jet >::JetCorrectorOnTheFly ( const edm::ParameterSet iConfig)
explicit

Definition at line 53 of file JetCorrectorOnTheFly.cc.

References edm::ParameterSet::getParameter(), and HLT_25ns14e33_v1_cff::InputTag.

54 {
55  mJetCorrector = consumes<reco::JetCorrector>(iConfig.getParameter<edm::InputTag>("JetCorrector"));
56  mJetToken = consumes<JetCollection>(edm::InputTag(iConfig.getParameter<edm::InputTag> ("JetCollectionName")));
57  mVertexToken = consumes<reco::VertexCollection>(edm::InputTag("offlinePrimaryVertices"));
58  mMinRawJetPt = iConfig.getParameter<double> ("MinRawJetPt");
59  mDebug = iConfig.getParameter<bool> ("Debug");
60 }
T getParameter(std::string const &) const
edm::EDGetTokenT< JetCollection > mJetToken
edm::EDGetTokenT< reco::VertexCollection > mVertexToken
edm::EDGetTokenT< reco::JetCorrector > mJetCorrector
template<class Jet >
JetCorrectorOnTheFly< Jet >::~JetCorrectorOnTheFly ( )

Definition at line 63 of file JetCorrectorOnTheFly.cc.

64 {
65 
66 }

Member Function Documentation

template<class Jet >
void JetCorrectorOnTheFly< Jet >::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 69 of file JetCorrectorOnTheFly.cc.

References mvaPFMET_cff::corrector, gather_cfg::cout, edm::Event::getByToken(), fwrapper::jets, and pileupReCalc_HLTpaths::scale.

70 {
72  iEvent.getByToken(mJetCorrector, corrector);
74  iEvent.getByToken(mJetToken,jets);
75 
77  iEvent.getByToken(mVertexToken,recVtxs);
78  int NPV(0);
79  for(unsigned int ind=0;ind<recVtxs->size();ind++) {
80  if (!((*recVtxs)[ind].isFake())) {
81  NPV++;
82  }
83  }
84  typename JetCollection::const_iterator i_jet;
86  for(i_jet = jets->begin(); i_jet != jets->end(); i_jet++) {
87  if (i_jet->pt() < mMinRawJetPt) continue;
88  //double scale = corrector->correction(i_jet->p4());
89  double scale = corrector->correction(*i_jet);
90  if (mDebug) {
91  std::cout<<"energy = "<<i_jet->energy()<<", "
92  <<"eta = "<<i_jet->eta()<<", "
93  <<"raw pt = "<<i_jet->pt()<<", "
94  <<"NPV = "<<NPV<<", "
95  <<"correction = "<<scale<<", "
96  <<"cor pt = "<<scale*i_jet->pt()<<endl;
97  }
98  mRawPt->Fill(i_jet->pt());
99  mCorPt->Fill(scale*i_jet->pt());
100  }
101 
102 
103 }
edm::EDGetTokenT< JetCollection > mJetToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
edm::EDGetTokenT< reco::VertexCollection > mVertexToken
edm::EDGetTokenT< reco::JetCorrector > mJetCorrector
tuple corrector
Definition: mvaPFMET_cff.py:82
vector< PseudoJet > jets
tuple cout
Definition: gather_cfg.py:121
template<class Jet >
void JetCorrectorOnTheFly< Jet >::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 106 of file JetCorrectorOnTheFly.cc.

107 {
108  mRawPt = fs->make<TH1F>("RawJetPt","RawJetPt",1000,0,1000);
109  mCorPt = fs->make<TH1F>("CorJetPt","CorJetPt",1000,0,1000);
110 }
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
edm::Service< TFileService > fs
template<class Jet >
void JetCorrectorOnTheFly< Jet >::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 113 of file JetCorrectorOnTheFly.cc.

114 {
115 
116 }

Member Data Documentation

template<class Jet >
edm::Service<TFileService> JetCorrectorOnTheFly< Jet >::fs
private

Definition at line 40 of file JetCorrectorOnTheFly.cc.

template<class Jet >
TH1F * JetCorrectorOnTheFly< Jet >::mCorPt
private

Definition at line 46 of file JetCorrectorOnTheFly.cc.

template<class Jet >
bool JetCorrectorOnTheFly< Jet >::mDebug
private

Definition at line 45 of file JetCorrectorOnTheFly.cc.

template<class Jet >
edm::EDGetTokenT<reco::JetCorrector> JetCorrectorOnTheFly< Jet >::mJetCorrector
private

Definition at line 41 of file JetCorrectorOnTheFly.cc.

template<class Jet >
edm::EDGetTokenT<JetCollection> JetCorrectorOnTheFly< Jet >::mJetToken
private

Definition at line 42 of file JetCorrectorOnTheFly.cc.

template<class Jet >
double JetCorrectorOnTheFly< Jet >::mMinRawJetPt
private

Definition at line 44 of file JetCorrectorOnTheFly.cc.

template<class Jet >
TH1F* JetCorrectorOnTheFly< Jet >::mRawPt
private

Definition at line 46 of file JetCorrectorOnTheFly.cc.

template<class Jet >
edm::EDGetTokenT<reco::VertexCollection> JetCorrectorOnTheFly< Jet >::mVertexToken
private

Definition at line 43 of file JetCorrectorOnTheFly.cc.