forked from mverwe/JetToyHI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
runFromFile.cc
282 lines (222 loc) · 10.8 KB
/
runFromFile.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include <iostream>
#include <chrono>
#include "TFile.h"
#include "TTree.h"
#include "fastjet/PseudoJet.hh"
#include "fastjet/ClusterSequenceArea.hh"
#include "include/ProgressBar.h"
#include "PU14/EventMixer.hh"
#include "PU14/CmdLine.hh"
#include "PU14/PU14.hh"
#include "include/jetCollection.hh"
#include "include/csSubtractor.hh"
#include "include/csSubtractorFullEvent.hh"
#include "include/skSubtractor.hh"
#include "include/softDropGroomer.hh"
#include "include/treeWriter.hh"
#include "include/jetMatcher.hh"
#include "include/randomCones.hh"
#include "include/Angularity.hh"
#include "include/jewelMatcher.hh"
using namespace std;
using namespace fastjet;
int main (int argc, char ** argv) {
auto start_time = chrono::steady_clock::now();
CmdLine cmdline(argc,argv);
// inputs read from command line
int nEvent = cmdline.value<int>("-nev",1); // first argument: command line option; second argument: default value
//bool verbose = cmdline.present("-verbose");
cout << "will run on " << nEvent << " events" << endl;
// Uncomment to silence fastjet banner
ClusterSequence::set_fastjet_banner_stream(NULL);
//to write info to root tree
treeWriter trw("jetTree");
//Jet definition
double R = 0.4;
double ghostRapMax = 6.0;
double ghost_area = 0.005;
int active_area_repeats = 1;
GhostedAreaSpec ghost_spec(ghostRapMax, active_area_repeats, ghost_area);
AreaDefinition area_def = AreaDefinition(active_area,ghost_spec);
JetDefinition jet_def(antikt_algorithm, R);
double jetRapMax = 3.0;
Selector jet_selector = SelectorAbsRapMax(jetRapMax);
Angularity width(1.,1.,R);
Angularity pTD(0.,2.,R);
ProgressBar Bar(cout, nEvent);
Bar.SetStyle(-1);
EventMixer mixer(&cmdline); //the mixing machinery from PU14 workshop
// loop over events
int iev = 0;
unsigned int entryDiv = (nEvent > 200) ? nEvent / 200 : 1;
while ( mixer.next_event() && iev < nEvent )
{
// increment event number
iev++;
Bar.Update(iev);
Bar.PrintWithMod(entryDiv);
vector<PseudoJet> particlesMerged = mixer.particles();
vector<double> eventWeight;
eventWeight.push_back(mixer.hard_weight());
eventWeight.push_back(mixer.pu_weight());
// cluster hard event only
vector<PseudoJet> particlesDummy, particlesReal;
vector<PseudoJet> particlesBkg, particlesSig;
SelectorVertexNumber(-1).sift(particlesMerged, particlesDummy, particlesReal);
SelectorVertexNumber(0).sift(particlesReal, particlesSig, particlesBkg);
for(int i = 0; i < (int)particlesDummy.size(); i++)
{
if(particlesDummy[i].perp() < 1e-5 && fabs(particlesDummy[i].pz()) > 2000)
{
particlesDummy.erase(particlesDummy.begin() + i);
i = i - 1;
}
}
//---------------------------------------------------------------------------
// jet clustering
//---------------------------------------------------------------------------
// run the clustering, extract the jets
ClusterSequenceArea csMerged(particlesMerged, jet_def, area_def);
jetCollection jetCollectionMerged(sorted_by_pt(jet_selector(csMerged.inclusive_jets())));
// ClusterSequenceArea csBkg(particlesBkg, jet_def, area_def);
// jetCollection jetCollectionBkg(sorted_by_pt(csBkg.inclusive_jets()));
ClusterSequenceArea csSig(particlesSig, jet_def, area_def);
jetCollection jetCollectionSig(sorted_by_pt(jet_selector(csSig.inclusive_jets(10.))));
jetCollection jetCollectionSigJewel(GetCorrectedJets(jetCollectionSig.getJet(), particlesDummy));
//calculate some angularities
vector<double> widthSig; widthSig.reserve(jetCollectionSig.getJet().size());
vector<double> pTDSig; pTDSig.reserve(jetCollectionSig.getJet().size());
for(PseudoJet jet : jetCollectionSig.getJet()) {
widthSig.push_back(width.result(jet));
pTDSig.push_back(pTD.result(jet));
}
jetCollectionSig.addVector("widthSig", widthSig);
jetCollectionSig.addVector("pTDSig", pTDSig);
//---------------------------------------------------------------------------
// background subtraction
//---------------------------------------------------------------------------
//run jet-by-jet constituent subtraction on mixed (hard+UE) event
csSubtractor csSub(R, 1., -1, 0.005,ghostRapMax,jetRapMax);
csSub.setInputParticles(particlesMerged);
jetCollection jetCollectionCS(csSub.doSubtraction());
jetCollection jetCollectionCSJewel(GetCorrectedJets(jetCollectionCS.getJet(), particlesDummy));
//Background densities used by constituent subtraction
vector<double> rho; rho.push_back(csSub.getRho());
vector<double> rhom; rhom.push_back(csSub.getRhoM());
//calculate some angularities
vector<double> widthCS; widthCS.reserve(jetCollectionCS.getJet().size());
vector<double> pTDCS; pTDCS.reserve(jetCollectionCS.getJet().size());
for(PseudoJet jet : jetCollectionCS.getJet()) {
widthCS.push_back(width.result(jet));
pTDCS.push_back(pTD.result(jet));
}
jetCollectionCS.addVector("widthCS", widthCS);
jetCollectionCS.addVector("pTDCS", pTDCS);
//run full event constituent subtraction on mixed (hard+UE) event
// csSubtractorFullEvent csSubGlobal(1., R, 0.005,ghostRapMax);
// csSubGlobal.setRho(rho[0]);
// csSubGlobal.setRhom(rhom[0]);
// csSubGlobal.setInputParticles(particlesMerged);
// vector<PseudoJet> csEvent = csSubGlobal.doSubtraction();
//cluster jets from constituent subtracted event
// ClusterSequenceArea csGlobal(csEvent, jet_def, area_def);
// jetCollection jetCollectionCSGlobal(sorted_by_pt(jet_selector(csGlobal.inclusive_jets())));
//Uncomment if youw ant to study random cones
// randomCones rc(4,R,2.3,rho[0]);
// rc.setInputParticles(particlesMerged);
// jetCollection jetCollectionRC(rc.run());
//run soft killer on mixed event
skSubtractor skSub(0.4, 3.0);
skSub.setInputParticles(particlesMerged);
vector<PseudoJet> skEvent = skSub.doSubtraction();
vector<double> skPtThreshold;
skPtThreshold.push_back(skSub.getPtThreshold()); //SoftKiller pT threshold
//cluster jets for soft killed event
ClusterSequenceArea csSK(skEvent, jet_def, area_def);
jetCollection jetCollectionSK(sorted_by_pt(jet_selector(csSK.inclusive_jets())));
//---------------------------------------------------------------------------
// Groom the jets
//---------------------------------------------------------------------------
//SoftDrop grooming classic for CS jets (zcut=0.1, beta=0)
softDropGroomer sdgCS(0.1, 0.0, R);
jetCollection jetCollectionCSSD(sdgCS.doGrooming(jetCollectionCS));
jetCollectionCSSD.addVector("csJetSDzg", sdgCS.getZgs());
jetCollectionCSSD.addVector("csJetSDndrop", sdgCS.getNDroppedSubjets());
jetCollectionCSSD.addVector("csJetSDdr12", sdgCS.getDR12());
jetCollection jetCollectionCSSDJewel(GetCorrectedJets(sdgCS.getConstituents(), particlesDummy));
vector<pair<PseudoJet, PseudoJet>> CSSDJewel = GetCorrectedSubJets(sdgCS.getConstituents1(), sdgCS.getConstituents2(), particlesDummy);
jetCollectionCSSDJewel.addVector("csJetSDJewelzg", CalculateZG(CSSDJewel));
jetCollectionCSSDJewel.addVector("csJetSDJeweldr12", CalculateDR(CSSDJewel));
//SoftDrop grooming classic for signal jets (zcut=0.1, beta=0)
softDropGroomer sdgSig(0.1, 0.0, R);
jetCollection jetCollectionSigSD(sdgSig.doGrooming(jetCollectionSig));
jetCollectionSigSD.addVector("sigJetSDZg", sdgSig.getZgs());
jetCollectionSigSD.addVector("sigJetSDndrop", sdgSig.getNDroppedSubjets());
jetCollectionSigSD.addVector("sigJetSDdr12", sdgSig.getDR12());
jetCollection jetCollectionSigSDJewel(GetCorrectedJets(sdgSig.getConstituents(), particlesDummy));
vector<pair<PseudoJet, PseudoJet>> SigSDJewel = GetCorrectedSubJets(sdgSig.getConstituents1(), sdgSig.getConstituents2(), particlesDummy);
jetCollectionSigSDJewel.addVector("sigJetSDJewelzg", CalculateZG(SigSDJewel));
jetCollectionSigSDJewel.addVector("sigJetSDJeweldr12", CalculateDR(SigSDJewel));
//match the CS jets to signal jets
jetMatcher jmCS(R);
jmCS.setBaseJets(jetCollectionCS);
jmCS.setTagJets(jetCollectionSig);
jmCS.matchJets();
jmCS.reorderedToTag(jetCollectionCS);
jmCS.reorderedToTag(jetCollectionCSSD);
jmCS.reorderedToTag(jetCollectionCSJewel);
jmCS.reorderedToTag(jetCollectionCSSDJewel);
//match the SK jets to signal jets
jetMatcher jmSK(R);
jmSK.setBaseJets(jetCollectionSK);
jmSK.setTagJets(jetCollectionSig);
jmSK.matchJets();
jmSK.reorderedToTag(jetCollectionSK);
//match the jets from full-event CS subtraction to signal jets
// jetMatcher jmCSGlobal(R);
// jmCSGlobal.setBaseJets(jetCollectionCSGlobal);
// jmCSGlobal.setTagJets(jetCollectionSig);
// jmCSGlobal.matchJets();
//
// jmCSGlobal.reorderedToTag(jetCollectionCSGlobal);
//match the unsubtracted jets to signal jets
jetMatcher jmUnSub(R);
jmUnSub.setBaseJets(jetCollectionMerged);
jmUnSub.setTagJets(jetCollectionSig);
jmUnSub.matchJets();
jmUnSub.reorderedToTag(jetCollectionMerged);
//---------------------------------------------------------------------------
// write tree
//---------------------------------------------------------------------------
//Give variable we want to write out to treeWriter.
//Only vectors of the types 'jetCollection', and 'double', 'int', 'PseudoJet' are supported
trw.addCollection("sigJet", jetCollectionSig);
trw.addCollection("sigJetJewel", jetCollectionSigJewel);
trw.addCollection("csJet", jetCollectionCS);
trw.addCollection("csJetJewel", jetCollectionCSJewel);
trw.addCollection("sigJetSD", jetCollectionSigSD);
trw.addCollection("sigJetSDJewel", jetCollectionSigSDJewel);
trw.addCollection("csJetSD", jetCollectionCSSD);
trw.addCollection("csJetSDJewel", jetCollectionCSSDJewel);
trw.addCollection("skJet", jetCollectionSK);
// trw.addCollection("csGlobJet", jetCollectionCSGlobal);
// trw.addCollection("randomCones", jetCollectionRC);
trw.addCollection("csRho", rho);
trw.addCollection("csRhom", rhom);
trw.addCollection("skPtThreshold", skPtThreshold);
trw.addCollection("eventWeight", eventWeight);
trw.addCollection("unsubJet", jetCollectionMerged);
trw.fillTree();
}//event loop
Bar.Update(nEvent);
Bar.Print();
Bar.PrintLine();
TTree *trOut = trw.getTree();
TFile *fout = new TFile(cmdline.value<string>("-output", "JetToyHIResultFromFile.root").c_str(), "RECREATE");
trOut->Write();
fout->Write();
fout->Close();
double time_in_seconds = chrono::duration_cast<chrono::milliseconds>
(chrono::steady_clock::now() - start_time).count() / 1000.0;
cout << "runFromFile: " << time_in_seconds << endl;
}