CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1RCTRelValAnalyzer.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
8 
11 
14 
16 
18 
19 using std::cout;
20 using std::endl;
21 using std::string;
22 
23 //
24 // constructors and destructor
25 //
27  : rctEmCandsLabel(iConfig.getParameter<edm::InputTag>("rctEmCandsLabel")),
28  rctRegionsLabel(iConfig.getParameter<edm::InputTag>("rctRegionsLabel")) {
29  // now do what ever initialization is needed
30 
32  h_emRank = fs->make<TH1F>("emRank", "emRank", 64, 0., 64.);
33  h_emIeta = fs->make<TH1F>("emOccupancyIeta", "emOccupancyIeta", 22, 0., 22.);
34  h_emIphi = fs->make<TH1F>("emOccupancyIphi", "emOccupancyIphi", 18, 0., 18.);
35  h_emIsoOccIetaIphi = fs->make<TH2F>("emIsoOccupancy2D", "emIsoOccupancy2D", 22, 0., 22., 18, 0., 18.);
36  h_emNonIsoOccIetaIphi = fs->make<TH2F>("emNonIsoOccupancy2D", "emNonIsoOccupancy2D", 22, 0., 22., 18, 0., 18.);
37 
38  h_regionSum = fs->make<TH1F>("regionSum", "regionSum", 100, 0., 100.);
39  h_regionSumIetaIphi = fs->make<TH2F>("regionSumEtWeighted2D", "regionSumEtWeighted2D", 22, 0., 22., 18, 0., 18.);
40  h_regionOccIetaIphi = fs->make<TH2F>("regionOccupancy2D", "regionOccupancy2D", 22, 0., 22., 18, 0., 18.);
41 }
42 
44  // do anything here that needs to be done at destruction time
45  // (e.g. close files, deallocate resources etc.)
46 }
47 
48 //
49 // member functions
50 //
51 
52 // ------------ method called to produce the data ------------
54  using namespace edm;
55 #ifdef THIS_IS_AN_EVENT_EXAMPLE
57  iEvent.getByLabel("example", pIn);
58 #endif
59 
60 #ifdef THIS_IS_AN_EVENTSETUP_EXAMPLE
61  ESHandle<SetupData> pSetup;
62  iSetup.get<SetupRecord>().get(pSetup);
63 #endif
64 
65  // as in L1GctTestAnalyzer.cc
66  Handle<L1CaloEmCollection> rctEmCands;
68 
69  L1CaloEmCollection::const_iterator em;
70  L1CaloRegionCollection::const_iterator rgn;
71 
72  iEvent.getByLabel(rctEmCandsLabel, rctEmCands);
73  iEvent.getByLabel(rctRegionsLabel, rctRegions);
74 
75  for (em = rctEmCands->begin(); em != rctEmCands->end(); em++) {
76  if ((*em).rank() > 0) {
77  h_emRank->Fill((*em).rank());
78  h_emIeta->Fill((*em).regionId().ieta());
79  h_emIphi->Fill((*em).regionId().iphi());
80  if ((*em).isolated()) {
81  h_emIsoOccIetaIphi->Fill((*em).regionId().ieta(), (*em).regionId().iphi());
82  } else {
83  h_emNonIsoOccIetaIphi->Fill((*em).regionId().ieta(), (*em).regionId().iphi());
84  }
85  }
86  }
87 
88  for (rgn = rctRegions->begin(); rgn != rctRegions->end(); rgn++) {
89  if ((*rgn).et() > 0) {
90  h_regionSum->Fill((*rgn).et());
91  h_regionSumIetaIphi->Fill((*rgn).gctEta(), (*rgn).gctPhi(), (*rgn).et());
92  h_regionOccIetaIphi->Fill((*rgn).gctEta(), (*rgn).gctPhi());
93  }
94  }
95 }
void analyze(const edm::Event &, const edm::EventSetup &) override
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
int iEvent
Definition: GenABIO.cc:224
L1RCTRelValAnalyzer(const edm::ParameterSet &)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
edm::InputTag rctEmCandsLabel
edm::InputTag rctRegionsLabel
T get() const
Definition: EventSetup.h:88
tuple cout
Definition: gather_cfg.py:144