Fork me on GitHub

source: git/cards/delphes_card_CMS.tcl@ 65b462a

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 65b462a was 0413f44, checked in by Michele Selvaggi <michele.selvaggi@…>, 9 years ago

updated BTagging by alex

  • Property mode set to 100644
File size: 17.7 KB
RevLine 
[d7d2da3]1#######################################
2# Order of execution of various modules
3#######################################
4
5set ExecutionPath {
6 ParticlePropagator
7
8 ChargedHadronTrackingEfficiency
9 ElectronTrackingEfficiency
10 MuonTrackingEfficiency
11
12 ChargedHadronMomentumSmearing
[934d037]13 ElectronMomentumSmearing
[d7d2da3]14 MuonMomentumSmearing
15
16 TrackMerger
17 Calorimeter
18 EFlowMerger
19
20 PhotonEfficiency
21 PhotonIsolation
22
[934d037]23 ElectronFilter
[d7d2da3]24 ElectronEfficiency
25 ElectronIsolation
26
27 MuonEfficiency
28 MuonIsolation
29
30 MissingET
31
[be2222c]32 NeutrinoFilter
[d7d2da3]33 GenJetFinder
34 FastJetFinder
35
[8839353]36 JetEnergyScale
[d7d2da3]37
[6153fb0]38 JetFlavorAssociation
39
[d7d2da3]40 BTagging
41 TauTagging
42
43 UniqueObjectFinder
44
45 ScalarHT
46
47 TreeWriter
48}
49
50#################################
51# Propagate particles in cylinder
52#################################
53
54module ParticlePropagator ParticlePropagator {
55 set InputArray Delphes/stableParticles
56
57 set OutputArray stableParticles
58 set ChargedHadronOutputArray chargedHadrons
59 set ElectronOutputArray electrons
60 set MuonOutputArray muons
61
62 # radius of the magnetic field coverage, in m
63 set Radius 1.29
64 # half-length of the magnetic field coverage, in m
65 set HalfLength 3.00
66
67 # magnetic field
68 set Bz 3.8
69}
70
71####################################
72# Charged hadron tracking efficiency
73####################################
74
75module Efficiency ChargedHadronTrackingEfficiency {
76 set InputArray ParticlePropagator/chargedHadrons
77 set OutputArray chargedHadrons
78
79 # add EfficiencyFormula {efficiency formula as a function of eta and pt}
80
81 # tracking efficiency formula for charged hadrons
[a2983ec]82 set EfficiencyFormula { (pt <= 0.1) * (0.00) +
83 (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.70) +
84 (abs(eta) <= 1.5) * (pt > 1.0) * (0.95) +
85 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.60) +
86 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0) * (0.85) +
[d7d2da3]87 (abs(eta) > 2.5) * (0.00)}
88}
89
90##############################
91# Electron tracking efficiency
92##############################
93
94module Efficiency ElectronTrackingEfficiency {
95 set InputArray ParticlePropagator/electrons
96 set OutputArray electrons
97
98 # set EfficiencyFormula {efficiency formula as a function of eta and pt}
99
100 # tracking efficiency formula for electrons
[a2983ec]101 set EfficiencyFormula { (pt <= 0.1) * (0.00) +
102 (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.73) +
103 (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e2) * (0.95) +
104 (abs(eta) <= 1.5) * (pt > 1.0e2) * (0.99) +
105 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.50) +
106 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e2) * (0.83) +
107 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e2) * (0.90) +
[d7d2da3]108 (abs(eta) > 2.5) * (0.00)}
109}
110
111##########################
112# Muon tracking efficiency
113##########################
114
115module Efficiency MuonTrackingEfficiency {
116 set InputArray ParticlePropagator/muons
117 set OutputArray muons
118
119 # set EfficiencyFormula {efficiency formula as a function of eta and pt}
120
121 # tracking efficiency formula for muons
[a2983ec]122 set EfficiencyFormula { (pt <= 0.1) * (0.00) +
123 (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.75) +
124 (abs(eta) <= 1.5) * (pt > 1.0) * (0.99) +
125 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.70) +
126 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0) * (0.98) +
[d7d2da3]127 (abs(eta) > 2.5) * (0.00)}
128}
129
130########################################
131# Momentum resolution for charged tracks
132########################################
133
134module MomentumSmearing ChargedHadronMomentumSmearing {
135 set InputArray ChargedHadronTrackingEfficiency/chargedHadrons
136 set OutputArray chargedHadrons
137
138 # set ResolutionFormula {resolution formula as a function of eta and pt}
139
140 # resolution formula for charged hadrons
[934d037]141 # based on arXiv:1405.6569
142 set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.06^2 + pt^2*1.3e-3^2) +
143 (abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.10^2 + pt^2*1.7e-3^2) +
144 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.25^2 + pt^2*3.1e-3^2)}
[d7d2da3]145}
146
[934d037]147###################################
148# Momentum resolution for electrons
149###################################
[d7d2da3]150
[934d037]151module MomentumSmearing ElectronMomentumSmearing {
[d7d2da3]152 set InputArray ElectronTrackingEfficiency/electrons
153 set OutputArray electrons
154
155 # set ResolutionFormula {resolution formula as a function of eta and energy}
156
[8839353]157 # resolution formula for electrons
[934d037]158 # based on arXiv:1405.6569
159 set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.06^2 + pt^2*1.3e-3^2) +
160 (abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.10^2 + pt^2*1.7e-3^2) +
161 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.25^2 + pt^2*3.1e-3^2)}
[d7d2da3]162}
163
164###############################
165# Momentum resolution for muons
166###############################
167
168module MomentumSmearing MuonMomentumSmearing {
169 set InputArray MuonTrackingEfficiency/muons
170 set OutputArray muons
171
172 # set ResolutionFormula {resolution formula as a function of eta and pt}
173
174 # resolution formula for muons
[934d037]175 set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.01^2 + pt^2*2.0e-4^2) +
176 (abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.02^2 + pt^2*3.0e-4^2) +
177 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.05^2 + pt^2*6.0e-4^2)}
[d7d2da3]178}
179
180##############
181# Track merger
182##############
183
184module Merger TrackMerger {
185# add InputArray InputArray
186 add InputArray ChargedHadronMomentumSmearing/chargedHadrons
[934d037]187 add InputArray ElectronMomentumSmearing/electrons
[a0ff736]188 add InputArray MuonMomentumSmearing/muons
[d7d2da3]189 set OutputArray tracks
190}
191
192#############
193# Calorimeter
194#############
195
196module Calorimeter Calorimeter {
197 set ParticleInputArray ParticlePropagator/stableParticles
198 set TrackInputArray TrackMerger/tracks
199
200 set TowerOutputArray towers
201 set PhotonOutputArray photons
202
[a2983ec]203 set EFlowTrackOutputArray eflowTracks
204 set EFlowPhotonOutputArray eflowPhotons
205 set EFlowNeutralHadronOutputArray eflowNeutralHadrons
206
[38bf1ae]207 set ECalEnergyMin 0.5
208 set HCalEnergyMin 1.0
[1c8d9db]209
[38bf1ae]210 set ECalEnergySignificanceMin 1.0
211 set HCalEnergySignificanceMin 1.0
[a2983ec]212
213 set SmearTowerCenter true
[d7d2da3]214
215 set pi [expr {acos(-1)}]
216
217 # lists of the edges of each tower in eta and phi
218 # each list starts with the lower edge of the first tower
219 # the list ends with the higher edged of the last tower
220
221 # 5 degrees towers
222 set PhiBins {}
223 for {set i -36} {$i <= 36} {incr i} {
224 add PhiBins [expr {$i * $pi/36.0}]
225 }
226 foreach eta {-1.566 -1.479 -1.392 -1.305 -1.218 -1.131 -1.044 -0.957 -0.87 -0.783 -0.696 -0.609 -0.522 -0.435 -0.348 -0.261 -0.174 -0.087 0 0.087 0.174 0.261 0.348 0.435 0.522 0.609 0.696 0.783 0.87 0.957 1.044 1.131 1.218 1.305 1.392 1.479 1.566 1.653} {
227 add EtaPhiBins $eta $PhiBins
228 }
229
230 # 10 degrees towers
231 set PhiBins {}
232 for {set i -18} {$i <= 18} {incr i} {
233 add PhiBins [expr {$i * $pi/18.0}]
234 }
235 foreach eta {-4.35 -4.175 -4 -3.825 -3.65 -3.475 -3.3 -3.125 -2.95 -2.868 -2.65 -2.5 -2.322 -2.172 -2.043 -1.93 -1.83 -1.74 -1.653 1.74 1.83 1.93 2.043 2.172 2.322 2.5 2.65 2.868 2.95 3.125 3.3 3.475 3.65 3.825 4 4.175 4.35 4.525} {
236 add EtaPhiBins $eta $PhiBins
237 }
238
239 # 20 degrees towers
240 set PhiBins {}
241 for {set i -9} {$i <= 9} {incr i} {
242 add PhiBins [expr {$i * $pi/9.0}]
243 }
244 foreach eta {-5 -4.7 -4.525 4.7 5} {
245 add EtaPhiBins $eta $PhiBins
246 }
247
248 # default energy fractions {abs(PDG code)} {Fecal Fhcal}
249 add EnergyFraction {0} {0.0 1.0}
250 # energy fractions for e, gamma and pi0
251 add EnergyFraction {11} {1.0 0.0}
252 add EnergyFraction {22} {1.0 0.0}
253 add EnergyFraction {111} {1.0 0.0}
254 # energy fractions for muon, neutrinos and neutralinos
255 add EnergyFraction {12} {0.0 0.0}
256 add EnergyFraction {13} {0.0 0.0}
257 add EnergyFraction {14} {0.0 0.0}
258 add EnergyFraction {16} {0.0 0.0}
259 add EnergyFraction {1000022} {0.0 0.0}
260 add EnergyFraction {1000023} {0.0 0.0}
261 add EnergyFraction {1000025} {0.0 0.0}
262 add EnergyFraction {1000035} {0.0 0.0}
263 add EnergyFraction {1000045} {0.0 0.0}
264 # energy fractions for K0short and Lambda
265 add EnergyFraction {310} {0.3 0.7}
266 add EnergyFraction {3122} {0.3 0.7}
267
268 # set ECalResolutionFormula {resolution formula as a function of eta and energy}
[a2983ec]269 set ECalResolutionFormula { (abs(eta) <= 3.0) * sqrt(energy^2*0.007^2 + energy*0.07^2 + 0.35^2) +
[d7d2da3]270 (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.107^2 + energy*2.08^2)}
271
272 # set HCalResolutionFormula {resolution formula as a function of eta and energy}
[a2983ec]273 set HCalResolutionFormula { (abs(eta) <= 3.0) * sqrt(energy^2*0.050^2 + energy*1.50^2) +
[a1ac20e]274 (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.130^2 + energy*2.70^2)}
[d7d2da3]275}
276
277####################
278# Energy flow merger
279####################
280
281module Merger EFlowMerger {
282# add InputArray InputArray
283 add InputArray Calorimeter/eflowTracks
[27bf162]284 add InputArray Calorimeter/eflowPhotons
285 add InputArray Calorimeter/eflowNeutralHadrons
[d7d2da3]286 set OutputArray eflow
287}
288
289###################
290# Photon efficiency
291###################
292
293module Efficiency PhotonEfficiency {
[27bf162]294 set InputArray Calorimeter/eflowPhotons
[d7d2da3]295 set OutputArray photons
296
297 # set EfficiencyFormula {efficiency formula as a function of eta and pt}
298
299 # efficiency formula for photons
[a2983ec]300 set EfficiencyFormula { (pt <= 10.0) * (0.00) +
301 (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) +
302 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0) * (0.85) +
[d7d2da3]303 (abs(eta) > 2.5) * (0.00)}
304}
305
306##################
307# Photon isolation
308##################
309
310module Isolation PhotonIsolation {
311 set CandidateInputArray PhotonEfficiency/photons
312 set IsolationInputArray EFlowMerger/eflow
313
314 set OutputArray photons
315
316 set DeltaRMax 0.5
317
318 set PTMin 0.5
319
320 set PTRatioMax 0.1
321}
322
[934d037]323#################
324# Electron filter
325#################
326
327module PdgCodeFilter ElectronFilter {
328 set InputArray Calorimeter/eflowTracks
329 set OutputArray electrons
330 set Invert true
331 add PdgCode {11}
332 add PdgCode {-11}
333}
334
[d7d2da3]335#####################
336# Electron efficiency
337#####################
338
339module Efficiency ElectronEfficiency {
[934d037]340 set InputArray ElectronFilter/electrons
[d7d2da3]341 set OutputArray electrons
342
343 # set EfficiencyFormula {efficiency formula as a function of eta and pt}
344
345 # efficiency formula for electrons
[a2983ec]346 set EfficiencyFormula { (pt <= 10.0) * (0.00) +
347 (abs(eta) <= 1.5) * (pt > 10.0) * (0.95) +
348 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0) * (0.85) +
[d7d2da3]349 (abs(eta) > 2.5) * (0.00)}
350}
351
352####################
353# Electron isolation
354####################
355
356module Isolation ElectronIsolation {
357 set CandidateInputArray ElectronEfficiency/electrons
358 set IsolationInputArray EFlowMerger/eflow
359
360 set OutputArray electrons
361
362 set DeltaRMax 0.5
363
364 set PTMin 0.5
365
366 set PTRatioMax 0.1
367}
368
369#################
370# Muon efficiency
371#################
372
373module Efficiency MuonEfficiency {
374 set InputArray MuonMomentumSmearing/muons
375 set OutputArray muons
376
377 # set EfficiencyFormula {efficiency as a function of eta and pt}
378
379 # efficiency formula for muons
[a2983ec]380 set EfficiencyFormula { (pt <= 10.0) * (0.00) +
381 (abs(eta) <= 1.5) * (pt > 10.0 && pt <= 1.0e3) * (0.95) +
382 (abs(eta) <= 1.5) * (pt > 1.0e3) * (0.95 * exp(0.5 - pt*5.0e-4)) +
383 (abs(eta) > 1.5 && abs(eta) <= 2.4) * (pt > 10.0 && pt <= 1.0e3) * (0.95) +
384 (abs(eta) > 1.5 && abs(eta) <= 2.4) * (pt > 1.0e3) * (0.95 * exp(0.5 - pt*5.0e-4)) +
[1697699]385 (abs(eta) > 2.4) * (0.00)}
[d7d2da3]386}
387
388################
389# Muon isolation
390################
391
392module Isolation MuonIsolation {
393 set CandidateInputArray MuonEfficiency/muons
394 set IsolationInputArray EFlowMerger/eflow
395
396 set OutputArray muons
397
398 set DeltaRMax 0.5
399
400 set PTMin 0.5
401
402 set PTRatioMax 0.1
403}
404
405###################
406# Missing ET merger
407###################
408
409module Merger MissingET {
410# add InputArray InputArray
[27bf162]411 add InputArray EFlowMerger/eflow
[d7d2da3]412 set MomentumOutputArray momentum
413}
414
415##################
416# Scalar HT merger
417##################
418
419module Merger ScalarHT {
420# add InputArray InputArray
421 add InputArray UniqueObjectFinder/jets
422 add InputArray UniqueObjectFinder/electrons
423 add InputArray UniqueObjectFinder/photons
[8839353]424 add InputArray UniqueObjectFinder/muons
[d7d2da3]425 set EnergyOutputArray energy
426}
427
[be2222c]428
429#####################
430# Neutrino Filter
431#####################
432
433module PdgCodeFilter NeutrinoFilter {
[a2983ec]434
[be2222c]435 set InputArray Delphes/stableParticles
436 set OutputArray filteredParticles
437
438 set PTMin 0.0
[a2983ec]439
[be2222c]440 add PdgCode {12}
441 add PdgCode {14}
442 add PdgCode {16}
443 add PdgCode {-12}
444 add PdgCode {-14}
445 add PdgCode {-16}
446
447}
448
449
[d7d2da3]450#####################
451# MC truth jet finder
452#####################
453
454module FastJetFinder GenJetFinder {
[be2222c]455 set InputArray NeutrinoFilter/filteredParticles
[d7d2da3]456
457 set OutputArray jets
458
459 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
460 set JetAlgorithm 6
[8839353]461 set ParameterR 0.5
[d7d2da3]462
463 set JetPTMin 20.0
464}
465
[be2222c]466
[d7d2da3]467############
468# Jet finder
469############
470
471module FastJetFinder FastJetFinder {
472# set InputArray Calorimeter/towers
473 set InputArray EFlowMerger/eflow
474
475 set OutputArray jets
476
477 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
478 set JetAlgorithm 6
[8839353]479 set ParameterR 0.5
[d7d2da3]480
481 set JetPTMin 20.0
482}
483
[8839353]484##################
485# Jet Energy Scale
486##################
[d7d2da3]487
[8839353]488module EnergyScale JetEnergyScale {
489 set InputArray FastJetFinder/jets
490 set OutputArray jets
[d7d2da3]491
[35b9204]492 # scale formula for jets
493 set ScaleFormula {sqrt( (2.5 - 0.15*(abs(eta)))^2 / pt + 1.0 )}
[d7d2da3]494}
495
[6153fb0]496########################
497# Jet Flavor Association
498########################
499
500module JetFlavorAssociation JetFlavorAssociation {
[934d037]501
[6153fb0]502 set PartonInputArray Delphes/partons
503 set ParticleInputArray Delphes/allParticles
504 set ParticleLHEFInputArray Delphes/allParticlesLHEF
505 set JetInputArray JetEnergyScale/jets
[934d037]506
[6153fb0]507 set DeltaR 0.5
508 set PartonPTMin 1.0
509 set PartonEtaMax 2.5
510
511}
512
[d7d2da3]513###########
514# b-tagging
515###########
516
517module BTagging BTagging {
[8839353]518 set JetInputArray JetEnergyScale/jets
[d7d2da3]519
[264bf40]520 set BitNumber 0
521
[d7d2da3]522 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
523 # PDG code = the highest PDG code of a quark or gluon inside DeltaR cone around jet axis
524 # gluon's PDG code has the lowest priority
525
526 # https://twiki.cern.ch/twiki/bin/view/CMSPublic/PhysicsResultsBTV
527 # default efficiency formula (misidentification rate)
[0413f44]528 add EfficiencyFormula {0} {0.01+0.00038 * pt}
[d7d2da3]529
530 # efficiency formula for c-jets (misidentification rate)
[0413f44]531 add EfficiencyFormula {4} {0.25*tanh(0.018*pt)*(1/(1+ 0.0013*pt))}
[d7d2da3]532
533 # efficiency formula for b-jets
[0413f44]534 add EfficiencyFormula {5} { 0.85*tanh(0.0025*pt)*(25.0/(1+0.063*pt))}
[d7d2da3]535}
536
[6153fb0]537#############
538# tau-tagging
539#############
540
[d7d2da3]541module TauTagging TauTagging {
542 set ParticleInputArray Delphes/allParticles
543 set PartonInputArray Delphes/partons
[28f1285]544 set JetInputArray JetEnergyScale/jets
[d7d2da3]545
546 set DeltaR 0.5
547
548 set TauPTMin 1.0
549
550 set TauEtaMax 2.5
551
552 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
553
554 # default efficiency formula (misidentification rate)
555 add EfficiencyFormula {0} {0.001}
556 # efficiency formula for tau-jets
557 add EfficiencyFormula {15} {0.4}
558}
559
560#####################################################
561# Find uniquely identified photons/electrons/tau/jets
562#####################################################
563
564module UniqueObjectFinder UniqueObjectFinder {
565# earlier arrays take precedence over later ones
566# add InputArray InputArray OutputArray
567 add InputArray PhotonIsolation/photons photons
568 add InputArray ElectronIsolation/electrons electrons
[8839353]569 add InputArray MuonIsolation/muons muons
570 add InputArray JetEnergyScale/jets jets
[d7d2da3]571}
572
573##################
574# ROOT tree writer
575##################
576
[27bf162]577# tracks, towers and eflow objects are not stored by default in the output.
[282f591]578# if needed (for jet constituent or other studies), uncomment the relevant
579# "add Branch ..." lines.
[27bf162]580
[d7d2da3]581module TreeWriter TreeWriter {
582# add Branch InputArray BranchName BranchClass
583 add Branch Delphes/allParticles Particle GenParticle
[27bf162]584
[f2d7d0c]585 add Branch TrackMerger/tracks Track Track
586 add Branch Calorimeter/towers Tower Tower
[282f591]587
[f2d7d0c]588 add Branch Calorimeter/eflowTracks EFlowTrack Track
589 add Branch Calorimeter/eflowPhotons EFlowPhoton Tower
590 add Branch Calorimeter/eflowNeutralHadrons EFlowNeutralHadron Tower
[282f591]591
[d7d2da3]592 add Branch GenJetFinder/jets GenJet Jet
593 add Branch UniqueObjectFinder/jets Jet Jet
594 add Branch UniqueObjectFinder/electrons Electron Electron
595 add Branch UniqueObjectFinder/photons Photon Photon
[8839353]596 add Branch UniqueObjectFinder/muons Muon Muon
[d7d2da3]597 add Branch MissingET/momentum MissingET MissingET
598 add Branch ScalarHT/energy ScalarHT ScalarHT
599}
Note: See TracBrowser for help on using the repository browser.