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 Attributes
AnalysisTasksAnalyzerJEC Class Reference

Example class that can be used both within FWLite and within the full framework. More...

#include "PhysicsTools/UtilAlgos/interface/AnalysisTasksAnalyzerJEC.h"

Inheritance diagram for AnalysisTasksAnalyzerJEC:
edm::BasicAnalyzer

Public Member Functions

 AnalysisTasksAnalyzerJEC (const edm::ParameterSet &cfg, TFileDirectory &fs)
 default constructor More...
 
 AnalysisTasksAnalyzerJEC (const edm::ParameterSet &cfg, TFileDirectory &fs, edm::ConsumesCollector &&iC)
 
void analyze (const edm::EventBase &event)
 everything that needs to be done during the event loop More...
 
void beginJob ()
 everything that needs to be done before the event loop More...
 
void endJob ()
 everything that needs to be done after the event loop More...
 
virtual ~AnalysisTasksAnalyzerJEC ()
 default destructor More...
 
- Public Member Functions inherited from edm::BasicAnalyzer
 BasicAnalyzer (const edm::ParameterSet &cfg, TFileDirectory &fileService)
 default constructor More...
 
 BasicAnalyzer (const edm::ParameterSet &cfg, TFileDirectory &fileService, edm::ConsumesCollector &&iC)
 
virtual ~BasicAnalyzer ()
 default destructor More...
 

Private Attributes

bool help_
 
std::map< std::string, TH2 * > hists_
 histograms More...
 
std::string jecLevel_
 
unsigned int jetInEvents_
 
edm::InputTag Jets_
 input tag for mouns More...
 
edm::EDGetTokenT< std::vector
< pat::Jet > > 
JetsToken_
 
std::string patJetCorrFactors_
 

Detailed Description

Example class that can be used both within FWLite and within the full framework.

This is an example for keeping classes that can be used both within FWLite and within the full framework. The class is derived from the BasicAnalyzer base class, which is an interface for the two wrapper classes EDAnalyzerWrapper and FWLiteAnalyzerWrapper. The latter provides basic configuration file reading and event looping equivalent to the FWLiteHistograms executable of this package. You can see the FWLiteAnalyzerWrapper class at work in the FWLiteWithBasicAnalyzer executable of this package.

Definition at line 19 of file AnalysisTasksAnalyzerJEC.h.

Constructor & Destructor Documentation

AnalysisTasksAnalyzerJEC::AnalysisTasksAnalyzerJEC ( const edm::ParameterSet cfg,
TFileDirectory fs 
)

default constructor

Definition at line 8 of file AnalysisTasksAnalyzerJEC.cc.

References hists_, jetInEvents_, and TFileDirectory::make().

8  :
10  Jets_(cfg.getParameter<edm::InputTag>("Jets")),
11  jecLevel_(cfg.getParameter<std::string>("jecLevel")),
12  patJetCorrFactors_(cfg.getParameter<std::string>("patJetCorrFactors")),
13  help_(cfg.getParameter<bool>("help"))
14 {
15 
16  hists_["Response" ] = fs.make<TH2F>("Response" , "response; #eta;p_{T}(reco)/p_{T}(gen)" , 5, -3.3, 3.3, 100, 0.4, 1.6);
17  jetInEvents_=0;
18 }
T getParameter(std::string const &) const
edm::InputTag Jets_
input tag for mouns
T * make(const Args &...args) const
make new ROOT object
BasicAnalyzer(const edm::ParameterSet &cfg, TFileDirectory &fileService)
default constructor
Definition: BasicAnalyzer.h:46
std::map< std::string, TH2 * > hists_
histograms
AnalysisTasksAnalyzerJEC::AnalysisTasksAnalyzerJEC ( const edm::ParameterSet cfg,
TFileDirectory fs,
edm::ConsumesCollector &&  iC 
)

Definition at line 19 of file AnalysisTasksAnalyzerJEC.cc.

References hists_, jetInEvents_, and TFileDirectory::make().

19  :
21  Jets_(cfg.getParameter<edm::InputTag>("Jets")),
22  JetsToken_(iC.consumes<std::vector<pat::Jet> >(Jets_)),
23  jecLevel_(cfg.getParameter<std::string>("jecLevel")),
24  patJetCorrFactors_(cfg.getParameter<std::string>("patJetCorrFactors")),
25  help_(cfg.getParameter<bool>("help"))
26 {
27 
28  hists_["Response" ] = fs.make<TH2F>("Response" , "response; #eta;p_{T}(reco)/p_{T}(gen)" , 5, -3.3, 3.3, 100, 0.4, 1.6);
29  jetInEvents_=0;
30 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
edm::InputTag Jets_
input tag for mouns
T * make(const Args &...args) const
make new ROOT object
edm::EDGetTokenT< std::vector< pat::Jet > > JetsToken_
BasicAnalyzer(const edm::ParameterSet &cfg, TFileDirectory &fileService)
default constructor
Definition: BasicAnalyzer.h:46
std::map< std::string, TH2 * > hists_
histograms
AnalysisTasksAnalyzerJEC::~AnalysisTasksAnalyzerJEC ( )
virtual

default destructor

deconstructor

A Response function is nicer in a TProfile:

Definition at line 32 of file AnalysisTasksAnalyzerJEC.cc.

References mergeVDriftHistosByStation::file, hists_, and jecLevel_.

33 {
34 
36  TFile* file=new TFile("myResponse"+TString(jecLevel_)+".root", "RECREATE");
37  TProfile* prof = hists_["Response" ]->ProfileX();
38  prof->Write();
39  file->Write();
40  file->Close();
41 }
std::map< std::string, TH2 * > hists_
histograms

Member Function Documentation

void AnalysisTasksAnalyzerJEC::analyze ( const edm::EventBase event)
virtual

everything that needs to be done during the event loop

Implements edm::BasicAnalyzer.

Definition at line 44 of file AnalysisTasksAnalyzerJEC.cc.

References gather_cfg::cout, help_, hists_, jecLevel_, jetInEvents_, METSkim_cff::Jets, Jets_, gen::k, and patJetCorrFactors_.

45 {
46  // define what Jet you are using; this is necessary as FWLite is not
47  // capable of reading edm::Views
48  using pat::Jet;
49 
50  // Handle to the Jet collection
52  event.getByLabel(Jets_, Jets);
53 
54  // loop Jet collection and fill histograms
55  for(std::vector<Jet>::const_iterator jet_it=Jets->begin(); jet_it!=Jets->end(); ++jet_it){
56 
57 
59  if(help_==true){
60  if(jetInEvents_==0){
61  std::cout<<"\n \n number of available JEC sets: "<< jet_it->availableJECSets().size() << std::endl;
62  for(unsigned int k=0; k< jet_it->availableJECSets().size(); ++k){
63  std::cout<<"\n \n available JEC Set: "<< jet_it->availableJECSets()[k] << std::endl;
64  }
65  std::cout<<"\n \n*** You found out which JEC Sets exist! Now correct it in your config file."<<std::endl;
66  std::cout<<"\n \n number of available JEC levels "<< jet_it->availableJECLevels().size() << std::endl;
67  for(unsigned int k=0; k< jet_it->availableJECLevels().size(); ++k){
68  std::cout<<"\n \n available JEC: "<< jet_it->availableJECLevels(patJetCorrFactors_)[k] << std::endl;
69  }
70  std::cout<<"\n \n**** You did it correctly congratulations!!!! And you found out which JEC levels are saved within the jets. Correct this in your configuration file." <<std::endl;
71  }
72  }
73 
74  if(jet_it->genParticlesSize()>0){
75  hists_["Response" ]->Fill( jet_it->correctedJet(jecLevel_).eta(), jet_it->correctedJet(jecLevel_).pt()/ jet_it->genParticle(0)->pt());
76  std::cout<<"\n \n**** You did it correctly congratulations!!!! "<< std::endl;
77  }
78  jetInEvents_+=1;
79  }
80 }
edm::InputTag Jets_
input tag for mouns
tuple Jets
Definition: METSkim_cff.py:17
int k[5][pyjets_maxn]
Analysis-level calorimeter jet class.
Definition: Jet.h:73
std::map< std::string, TH2 * > hists_
histograms
tuple cout
Definition: gather_cfg.py:121
void AnalysisTasksAnalyzerJEC::beginJob ( void  )
inlinevirtual

everything that needs to be done before the event loop

Implements edm::BasicAnalyzer.

Definition at line 28 of file AnalysisTasksAnalyzerJEC.h.

28 {};
void AnalysisTasksAnalyzerJEC::endJob ( void  )
inlinevirtual

everything that needs to be done after the event loop

Implements edm::BasicAnalyzer.

Definition at line 30 of file AnalysisTasksAnalyzerJEC.h.

30 {};

Member Data Documentation

bool AnalysisTasksAnalyzerJEC::help_
private

Definition at line 40 of file AnalysisTasksAnalyzerJEC.h.

Referenced by analyze().

std::map<std::string, TH2*> AnalysisTasksAnalyzerJEC::hists_
private

histograms

Definition at line 43 of file AnalysisTasksAnalyzerJEC.h.

Referenced by AnalysisTasksAnalyzerJEC(), analyze(), and ~AnalysisTasksAnalyzerJEC().

std::string AnalysisTasksAnalyzerJEC::jecLevel_
private

Definition at line 38 of file AnalysisTasksAnalyzerJEC.h.

Referenced by analyze(), and ~AnalysisTasksAnalyzerJEC().

unsigned int AnalysisTasksAnalyzerJEC::jetInEvents_
private

Definition at line 41 of file AnalysisTasksAnalyzerJEC.h.

Referenced by AnalysisTasksAnalyzerJEC(), and analyze().

edm::InputTag AnalysisTasksAnalyzerJEC::Jets_
private

input tag for mouns

Definition at line 36 of file AnalysisTasksAnalyzerJEC.h.

Referenced by analyze().

edm::EDGetTokenT<std::vector<pat::Jet> > AnalysisTasksAnalyzerJEC::JetsToken_
private

Definition at line 37 of file AnalysisTasksAnalyzerJEC.h.

std::string AnalysisTasksAnalyzerJEC::patJetCorrFactors_
private

Definition at line 39 of file AnalysisTasksAnalyzerJEC.h.

Referenced by analyze().