Fork me on GitHub

source: git/cards/validation_card.tcl@ 933e560

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 933e560 was 0a64b9b, checked in by Michele Selvaggi <michele.selvaggi@…>, 8 years ago

adding necessary collections for validation

  • Property mode set to 100644
File size: 1.5 KB
Line 
1source delphes_card_CMS.tcl
2
3set ExecutionPath [lreplace $ExecutionPath end end]
4add ExecutionPath CaloJetFinder
5add ExecutionPath CaloMissingET
6add ExecutionPath GenScalarHT
7add ExecutionPath PionFilter
8add ExecutionPath TreeWriter
9
10module FastJetFinder GenJetFinder {
11 set JetPTMin 1.0
12}
13
14module FastJetFinder FastJetFinder {
15 set JetPTMin 1.0
16}
17
18########################
19# Calorimeter jet finder
20########################
21
22module FastJetFinder CaloJetFinder {
23 set InputArray Calorimeter/towers
24
25 set OutputArray jets
26
27 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
28 set JetAlgorithm 6
29 set ParameterR 0.5
30
31 set JetPTMin 1.0
32}
33
34#########################
35# Calo Missing ET merger
36########################
37
38module Merger CaloMissingET {
39# add InputArray InputArray
40 add InputArray Calorimeter/towers
41 set MomentumOutputArray momentum
42}
43
44#################
45# Gen Scalar HT
46#################
47
48module Merger GenScalarHT {
49# add InputArray InputArray
50 add InputArray NeutrinoFilter/filteredParticles
51 set EnergyOutputArray energy
52}
53
54#################
55# Pion filter
56#################
57
58module PdgCodeFilter PionFilter {
59 set InputArray HCal/eflowTracks
60 set OutputArray pions
61 set Invert true
62 add PdgCode {211}
63 add PdgCode {-211}
64}
65
66module TreeWriter TreeWriter {
67# add Branch InputArray BranchName BranchClass
68 add Branch CaloJetFinder/jets CaloJet Jet
69 add Branch CaloMissingET/momentum CaloMissingET MissingET
70 add Branch GenScalarHT/energy GenScalarHT ScalarHT
71 add Branch PionFilter/pions Pion Track
72}
Note: See TracBrowser for help on using the repository browser.