Fork me on GitHub

source: git/cards/validation_card.tcl@ 6be4bc0

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 6be4bc0 was 807918e, checked in by Pavel Demin <pavel.demin@…>, 8 years ago

fix FastJetFinder modules validation_card.tcl

  • Property mode set to 100644
File size: 709 bytes
Line 
1source delphes_card_CMS.tcl
2
3set ExecutionPath [lreplace $ExecutionPath end end]
4add ExecutionPath CaloJetFinder
5add ExecutionPath TreeWriter
6
7module FastJetFinder GenJetFinder {
8 set JetPTMin 1.0
9}
10
11module FastJetFinder FastJetFinder {
12 set JetPTMin 1.0
13}
14
15########################
16# Calorimeter jet finder
17########################
18
19module FastJetFinder CaloJetFinder {
20 set InputArray Calorimeter/towers
21
22 set OutputArray jets
23
24 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt
25 set JetAlgorithm 6
26 set ParameterR 0.5
27
28 set JetPTMin 1.0
29}
30
31module TreeWriter TreeWriter {
32# add Branch InputArray BranchName BranchClass
33 add Branch CaloJetFinder/jets CaloJet Jet
34}
Note: See TracBrowser for help on using the repository browser.