CMS 3D CMS Logo

L1RCTTestAnalyzer.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
8 
11 
13 
15 
17 
19 
20 using std::cout;
21 using std::endl;
22 using std::string;
23 
24 //
25 // constructors and destructor
26 //
28  : showEmCands(iConfig.getUntrackedParameter<bool>("showEmCands")),
29  showRegionSums(iConfig.getUntrackedParameter<bool>("showRegionSums")),
30  ecalDigisLabel(iConfig.getParameter<edm::InputTag>("ecalDigisLabel")),
31  hcalDigisLabel(iConfig.getParameter<edm::InputTag>("hcalDigisLabel")),
32  rctDigisLabel(iConfig.getParameter<edm::InputTag>("rctDigisLabel")) {
33  // now do what ever initialization is needed
34 
36 
37  emTree = fs->make<TTree>("emTree", "L1 RCT EM tree");
38  // emTree->Branch("emRank",emRank,"emRank/I");
39  // emTree->Branch("emIeta",emIeta,"emIeta/I");
40  // emTree->Branch("emIphi",emIphi,"emIphi/I");
41  // emTree->Branch("emIso" ,emIso ,"emIso/I");
42  emTree->Branch("emRank", &emRank);
43  emTree->Branch("emIeta", &emIeta);
44  emTree->Branch("emIphi", &emIphi);
45  emTree->Branch("emIso", &emIso);
46 
47  h_emRank = fs->make<TH1F>("emRank", "emRank", 64, 0., 64.);
48  h_emRankOutOfTime = fs->make<TH1F>("emRankOutOfTime", "emRankOutOfTime", 64, 0., 64.);
49  h_emIeta = fs->make<TH1F>("emIeta", "emIeta", 22, 0., 22.);
50  h_emIphi = fs->make<TH1F>("emIphi", "emIphi", 18, 0., 18.);
51  h_emIso = fs->make<TH1F>("emIso", "emIso", 2, 0., 2.);
52  h_emRankInIetaIphi = fs->make<TH2F>("emRank2D", "emRank2D", 22, 0., 22., 18, 0., 18.);
53  h_emIsoInIetaIphi = fs->make<TH2F>("emIso2D", "emIso2D", 22, 0., 22., 18, 0., 18.);
54  h_emNonIsoInIetaIphi = fs->make<TH2F>("emNonIso2D", "emNonIso2D", 22, 0., 22., 18, 0., 18.);
55  h_emCandTimeSample = fs->make<TH1F>("emCandTimeSample", "emCandTimeSample", 5, -2., 2.);
56 
57  h_regionSum = fs->make<TH1F>("regionSum", "regionSum", 100, 0., 100.);
58  h_regionIeta = fs->make<TH1F>("regionIeta", "regionIeta", 22, 0., 22.);
59  h_regionIphi = fs->make<TH1F>("regionIphi", "regionIphi", 18, 0., 18.);
60  h_regionMip = fs->make<TH1F>("regionMip", "regionMipBit", 2, 0., 2.);
61  h_regionSumInIetaIphi = fs->make<TH2F>("regionSum2D", "regionSum2D", 22, 0., 22., 18, 0., 18.);
62  h_regionFGInIetaIphi = fs->make<TH2F>("regionFG2D", "regionFG2D", 22, 0., 22., 18, 0., 18.);
63 
64  h_towerMip = fs->make<TH1F>("towerMip", "towerMipBit", 2, 0., 2.);
65 
66  h_ecalTimeSample = fs->make<TH1F>("ecalTimeSample", "ecalTimeSample", 10, 0., 10.);
67  h_hcalTimeSample = fs->make<TH1F>("hcalTimeSample", "hcalTimeSample", 10, 0., 10.);
68 
69  // get names of modules, producing object collections
70 }
71 
73  // do anything here that needs to be done at destruction time
74  // (e.g. close files, deallocate resources etc.)
75 }
76 
77 //
78 // member functions
79 //
80 
81 // ------------ method called to produce the data ------------
83  using namespace edm;
84 #ifdef THIS_IS_AN_EVENT_EXAMPLE
86  iEvent.getByLabel("example", pIn);
87 #endif
88 
89 #ifdef THIS_IS_AN_EVENTSETUP_EXAMPLE
90  ESHandle<SetupData> pSetup;
91  iSetup.get<SetupRecord>().get(pSetup);
92 #endif
93 
94  // as in L1GctTestAnalyzer.cc
95  Handle<L1CaloEmCollection> rctEmCands;
99 
100  L1CaloEmCollection::const_iterator em;
101  L1CaloRegionCollection::const_iterator rgn;
104 
105  iEvent.getByLabel(rctDigisLabel, rctEmCands);
106  iEvent.getByLabel(rctDigisLabel, rctRegions);
107  iEvent.getByLabel(ecalDigisLabel, ecalColl);
108  iEvent.getByLabel(hcalDigisLabel, hcalColl);
109 
110  // for sorting later
111  L1CaloEmCollection *myL1EmColl = new L1CaloEmCollection;
112 
113  for (ecal = ecalColl->begin(); ecal != ecalColl->end(); ecal++) {
114  for (unsigned short sample = 0; sample < (*ecal).size(); sample++) {
115  h_ecalTimeSample->Fill(sample);
116  }
117  }
118 
119  for (hcal = hcalColl->begin(); hcal != hcalColl->end(); hcal++) {
120  h_towerMip->Fill((*hcal).SOI_fineGrain());
121  for (unsigned short sample = 0; sample < (*hcal).size(); sample++) {
122  h_hcalTimeSample->Fill(sample);
123  }
124  }
125 
126  if (showEmCands) {
127  // std::cout << std::endl << "L1 RCT EmCand objects" << std::endl;
128  }
129  for (em = rctEmCands->begin(); em != rctEmCands->end(); em++) {
130  // std::cout << "(Analyzer)\n" << (*em) << std::endl;
131 
132  L1CaloEmCand *myL1EmCand = new L1CaloEmCand(*em);
133  (*myL1EmColl).push_back(*myL1EmCand);
134  delete myL1EmCand;
135 
136  h_emCandTimeSample->Fill((*em).bx());
137  if ((*em).bx() == 0) {
138  unsigned short n_emcands = 0;
139  // std::cout << std::endl << "rank: " << (*em).rank() ;
140 
141  if ((*em).rank() > 0) {
142  h_emRank->Fill((*em).rank());
143  h_emIeta->Fill((*em).regionId().ieta());
144  h_emIphi->Fill((*em).regionId().iphi());
145  h_emIso->Fill((*em).isolated());
146  h_emRankInIetaIphi->Fill((*em).regionId().ieta(), (*em).regionId().iphi(), (*em).rank());
147  if ((*em).isolated()) {
148  h_emIsoInIetaIphi->Fill((*em).regionId().ieta(), (*em).regionId().iphi());
149  } else {
150  h_emNonIsoInIetaIphi->Fill((*em).regionId().ieta(), (*em).regionId().iphi());
151  }
152  }
153 
154  if (showEmCands) {
155  if ((*em).rank() > 0) {
156  // std::cout << std::endl << "rank: " << (*em).rank();
157  unsigned short rgnPhi = 999;
158  unsigned short rgn = (unsigned short)(*em).rctRegion();
159  unsigned short card = (unsigned short)(*em).rctCard();
160  unsigned short crate = (unsigned short)(*em).rctCrate();
161 
162  if (card == 6) {
163  rgnPhi = rgn;
164  } else if (card < 6) {
165  rgnPhi = (card % 2);
166  } else {
167  std::cout << "rgnPhi not assigned (still " << rgnPhi << ") -- Weird card number! " << card;
168  }
169 
170  // unsigned short phi_bin = ((crate % 9) * 2) + rgnPhi;
171  short eta_bin = (card / 2) * 2 + 1;
172  if (card < 6) {
173  eta_bin = eta_bin + rgn;
174  }
175  if (crate < 9) {
176  eta_bin = -eta_bin;
177  }
178  n_emcands++;
179 
180  // std::cout << /* "rank: " << (*em).rank() << */ "
181  // eta_bin: " << eta_bin << " phi_bin: " << phi_bin << ". crate: "
182  // << crate << " card: " << card << " region: " << rgn << ".
183  // isolated: " << (*em).isolated();
184  }
185  }
186  } else {
187  h_emRankOutOfTime->Fill((*em).rank());
188  }
189  }
190  if (showEmCands) {
191  // std::cout << std::endl;
192  }
193 
194  // next: SORT THESE GUYS so they're entered into the tree highest first
195  // std::sort(rctEmCands->begin(),rctEmCands->end(),compareEmCands);
196  // for (em=rctEmCands->begin(); em!=rctEmCands->end(); em++)
197  std::sort(myL1EmColl->begin(), myL1EmColl->end(), compareEmCands);
198  std::reverse(myL1EmColl->begin(), myL1EmColl->end()); // whoops!
199  for (em = myL1EmColl->begin(); em != myL1EmColl->end(); em++) {
200  emRank.push_back((*em).rank());
201  emIeta.push_back((*em).regionId().ieta());
202  emIphi.push_back((*em).regionId().iphi());
203  emIso.push_back((*em).isolated());
204  }
205  emTree->Fill();
206 
207  if (showRegionSums) {
208  std::cout << "Regions" << std::endl;
209  }
210  for (rgn = rctRegions->begin(); rgn != rctRegions->end(); rgn++) {
211  if ((*rgn).bx() == 0) {
212  if (showRegionSums && (*rgn).et() > 0) {
213  std::cout << /* "(Analyzer)\n" << */ (*rgn) << std::endl;
214  }
215  if ((*rgn).et() > 0) {
216  h_regionSum->Fill((*rgn).et());
217  h_regionIeta->Fill((*rgn).gctEta());
218  h_regionIphi->Fill((*rgn).gctPhi());
219  h_regionSumInIetaIphi->Fill((*rgn).gctEta(), (*rgn).gctPhi(), (*rgn).et());
220  h_regionFGInIetaIphi->Fill((*rgn).gctEta(), (*rgn).gctPhi(), (*rgn).fineGrain());
221  }
222  h_regionMip->Fill((*rgn).mip());
223  }
224  }
225  if (showRegionSums) {
226  std::cout << std::endl;
227  }
228 
229  emRank.clear();
230  emIeta.clear();
231  emIphi.clear();
232  emIso.clear();
233 
234  delete myL1EmColl;
235 }
236 
238  return (cand1.rank() < cand2.rank());
239 }
l1RctEmulDigis_ECALGREN1_cff.ecalDigisLabel
ecalDigisLabel
Definition: l1RctEmulDigis_ECALGREN1_cff.py:8
L1RCTTestAnalyzer::h_hcalTimeSample
TH1F * h_hcalTimeSample
Definition: L1RCTTestAnalyzer.h:104
electrons_cff.bool
bool
Definition: electrons_cff.py:366
edm::SortedCollection::const_iterator
std::vector< T >::const_iterator const_iterator
Definition: SortedCollection.h:80
simplePhotonAnalyzer_cfi.sample
sample
Definition: simplePhotonAnalyzer_cfi.py:12
L1RCTTestAnalyzer::h_ecalTimeSample
TH1F * h_ecalTimeSample
Definition: L1RCTTestAnalyzer.h:103
unpackData-CaloStage1.rctDigisLabel
rctDigisLabel
Definition: unpackData-CaloStage1.py:167
L1RCTTestAnalyzer::h_emIphi
TH1F * h_emIphi
Definition: L1RCTTestAnalyzer.h:84
L1RCTTestAnalyzer::h_emIso
TH1F * h_emIso
Definition: L1RCTTestAnalyzer.h:85
hcal
Definition: ConfigurationDatabase.cc:13
edm
HLT enums.
Definition: AlignableModifier.h:19
gather_cfg.cout
cout
Definition: gather_cfg.py:144
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89281
l1RctEmulDigis_ECALGREN1_cff.hcalDigisLabel
hcalDigisLabel
Definition: l1RctEmulDigis_ECALGREN1_cff.py:4
L1RCTTestAnalyzer::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: L1RCTTestAnalyzer.cc:82
L1RCTTestAnalyzer::h_towerMip
TH1F * h_towerMip
Definition: L1RCTTestAnalyzer.h:101
L1RCTTestAnalyzer::emIeta
std::vector< int > emIeta
Definition: L1RCTTestAnalyzer.h:77
EDAnalyzer.h
L1RCTTestAnalyzer::compareEmCands
static bool compareEmCands(const L1CaloEmCand &cand1, const L1CaloEmCand &cand2)
Definition: L1RCTTestAnalyzer.cc:237
L1RCTTestAnalyzer::h_emNonIsoInIetaIphi
TH2F * h_emNonIsoInIetaIphi
Definition: L1RCTTestAnalyzer.h:89
ecal
Definition: ElectronicsMappingGPU.h:13
edm::Handle
Definition: AssociativeIterator.h:50
groupFilesInBlocks.reverse
reverse
Definition: groupFilesInBlocks.py:131
hltEgammaHLTExtra_cfi.hcal
hcal
Definition: hltEgammaHLTExtra_cfi.py:42
L1RCTTestAnalyzer::h_regionSumInIetaIphi
TH2F * h_regionSumInIetaIphi
Definition: L1RCTTestAnalyzer.h:96
L1RCTTestAnalyzer::h_emCandTimeSample
TH1F * h_emCandTimeSample
Definition: L1RCTTestAnalyzer.h:90
MakerMacros.h
L1CaloEmCollection
std::vector< L1CaloEmCand > L1CaloEmCollection
Definition: L1CaloCollections.h:10
edm::EventSetup::get
T get() const
Definition: EventSetup.h:87
L1RCTTestAnalyzer::h_emIsoInIetaIphi
TH2F * h_emIsoInIetaIphi
Definition: L1RCTTestAnalyzer.h:88
L1RCTTestAnalyzer::h_regionMip
TH1F * h_regionMip
Definition: L1RCTTestAnalyzer.h:95
edm::SortedCollection::begin
const_iterator begin() const
Definition: SortedCollection.h:262
Service.h
edm::ESHandle
Definition: DTSurvey.h:22
L1RCTTestAnalyzer::h_regionIphi
TH1F * h_regionIphi
Definition: L1RCTTestAnalyzer.h:94
L1RCTTestAnalyzer::emRank
std::vector< int > emRank
Definition: L1RCTTestAnalyzer.h:76
L1RCTTestAnalyzer::h_emRankInIetaIphi
TH2F * h_emRankInIetaIphi
Definition: L1RCTTestAnalyzer.h:86
L1RCTTestAnalyzer::h_emRank
TH1F * h_emRank
Definition: L1RCTTestAnalyzer.h:81
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
TFileService.h
L1RCTTestAnalyzer::~L1RCTTestAnalyzer
~L1RCTTestAnalyzer() override
Definition: L1RCTTestAnalyzer.cc:72
edm::ParameterSet
Definition: ParameterSet.h:47
Event.h
L1RCTTestAnalyzer::h_emRankOutOfTime
TH1F * h_emRankOutOfTime
Definition: L1RCTTestAnalyzer.h:82
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
jetUpdater_cfi.sort
sort
Definition: jetUpdater_cfi.py:29
L1RCTTestAnalyzer::rctDigisLabel
edm::InputTag rctDigisLabel
Definition: L1RCTTestAnalyzer.h:69
edm::Service< TFileService >
L1CaloCollections.h
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup
Definition: EventSetup.h:58
L1RCTTestAnalyzer::hcalDigisLabel
edm::InputTag hcalDigisLabel
Definition: L1RCTTestAnalyzer.h:68
get
#define get
L1RCTTestAnalyzer_cfi.showEmCands
showEmCands
Definition: L1RCTTestAnalyzer_cfi.py:5
L1RCTTestAnalyzer::h_emIeta
TH1F * h_emIeta
Definition: L1RCTTestAnalyzer.h:83
L1RCTTestAnalyzer::L1RCTTestAnalyzer
L1RCTTestAnalyzer(const edm::ParameterSet &)
Definition: L1RCTTestAnalyzer.cc:27
L1RCTTestAnalyzer_cfi.showRegionSums
showRegionSums
Definition: L1RCTTestAnalyzer_cfi.py:8
L1RCTTestAnalyzer::h_regionIeta
TH1F * h_regionIeta
Definition: L1RCTTestAnalyzer.h:93
L1RCTTestAnalyzer::showRegionSums
bool showRegionSums
Definition: L1RCTTestAnalyzer.h:66
Frameworkfwd.h
L1RCTTestAnalyzer::h_regionFGInIetaIphi
TH2F * h_regionFGInIetaIphi
Definition: L1RCTTestAnalyzer.h:99
L1RCTTestAnalyzer::ecalDigisLabel
edm::InputTag ecalDigisLabel
Definition: L1RCTTestAnalyzer.h:67
L1RCTTestAnalyzer::emIso
std::vector< int > emIso
Definition: L1RCTTestAnalyzer.h:79
L1RCTTestAnalyzer::emIphi
std::vector< int > emIphi
Definition: L1RCTTestAnalyzer.h:78
L1CaloEmCand::rank
unsigned rank() const
get rank bits
Definition: L1CaloEmCand.h:42
bsc_activity_cfg.ecal
ecal
Definition: bsc_activity_cfg.py:25
L1RCTTestAnalyzer::emTree
TTree * emTree
Definition: L1RCTTestAnalyzer.h:71
ParameterSet.h
L1RCTTestAnalyzer::showEmCands
bool showEmCands
Definition: L1RCTTestAnalyzer.h:65
edm::Event
Definition: Event.h:73
L1CaloEmCand
Level-1 Region Calorimeter Trigger EM candidate.
Definition: L1CaloEmCand.h:17
L1RCTTestAnalyzer.h
TFileService::make
T * make(const Args &... args) const
make new ROOT object
Definition: TFileService.h:64
L1RCTTestAnalyzer::h_regionSum
TH1F * h_regionSum
Definition: L1RCTTestAnalyzer.h:92