1 | #!/bin/sh
|
---|
2 | ################################################################################
|
---|
3 | #
|
---|
4 | # This code produces at set of validation plots for a given detector card.
|
---|
5 | #
|
---|
6 | # In order to run this you need to compile Delphes with Pythia8 first, see:
|
---|
7 | #
|
---|
8 | # https://cp3.irmp.ucl.ac.be/projects/delphes/wiki/WorkBook/Pythia8
|
---|
9 | #
|
---|
10 | # After you (re-)compiled Delphes with Pythia8 you are ready to go, execute from Delphes main dir:
|
---|
11 | #
|
---|
12 | # ./examples/validation.sh [detector_card] [number_of_events]
|
---|
13 | #
|
---|
14 | # e.g.
|
---|
15 | #
|
---|
16 | # ./examples/validation.sh cards/delphes_card_CMS.tcl 100000
|
---|
17 | #
|
---|
18 | # Note that the more events you specify, the more accurate the controls plots will be ...
|
---|
19 | # This said, 500k events should be ok for most cases.
|
---|
20 | #
|
---|
21 | ################################################################################
|
---|
22 |
|
---|
23 | EXPECTED_ARGS=2
|
---|
24 | E_BADARGS=65
|
---|
25 |
|
---|
26 | if [ $# -ne $EXPECTED_ARGS ]
|
---|
27 | then
|
---|
28 | echo "Usage: ./validation/validation.sh [detector_card] [number_of_events]"
|
---|
29 | echo "for instance: ./validation/validation.sh cards/delphes_card_CMS.tcl 10000"
|
---|
30 | exit $E_BADARGS
|
---|
31 | fi
|
---|
32 |
|
---|
33 | cardbase=$(basename $1)
|
---|
34 | nEvents=$2
|
---|
35 | output=validation_${cardbase%.*}.root
|
---|
36 | mainoutputdir=report_${cardbase%.*}
|
---|
37 | outputrootdir=report_${cardbase%.*}/root
|
---|
38 | cardlabel=${cardbase%.*}
|
---|
39 | version=$(cat VERSION)
|
---|
40 | outpdf=$mainoutputdir/${output%.*}.pdf
|
---|
41 | cardsdir=validation/cards
|
---|
42 | samplesdir=validation/samples
|
---|
43 | validationcard=cards/validation_$cardbase
|
---|
44 |
|
---|
45 | mkdir -p $cardsdir
|
---|
46 | mkdir -p $samplesdir
|
---|
47 | mkdir -p $outputrootdir
|
---|
48 | mkdir -p $mainoutputdir/www/fig
|
---|
49 |
|
---|
50 | sed "s/delphes_card_CMS.tcl/$cardbase/g" cards/validation_card.tcl > $validationcard
|
---|
51 | sed -i "1i set MaxEvents $nEvents" $validationcard
|
---|
52 |
|
---|
53 | function runParticleGun {
|
---|
54 | name=$1
|
---|
55 | pid=$2
|
---|
56 | cmnd=$cardsdir/configParticleGun_$name.cmnd
|
---|
57 | outputroot=particleGun_${name}_${cardlabel}.root
|
---|
58 | sed "/Main:spareMode1/s/=[[:space:]]*[0-9]*/= $pid/; /Main:numberOfEvents/s/=[[:space:]]*[0-9]*/= $nEvents/" examples/Pythia8/configParticleGun.cmnd > $cmnd
|
---|
59 | ./DelphesPythia8 $validationcard $cmnd $outputrootdir/$outputroot
|
---|
60 | }
|
---|
61 |
|
---|
62 |
|
---|
63 | function runJetsGun {
|
---|
64 | name=$1
|
---|
65 | pid=$2
|
---|
66 | cmnd=$cardsdir/configLHE_$pid.cmnd
|
---|
67 | inputroot=$samplesdir/$pid.root
|
---|
68 | outputroot=particleGun_${name}_${cardlabel}.root
|
---|
69 |
|
---|
70 | if [ ! -f $inputroot ]
|
---|
71 | then
|
---|
72 | python validation/FlatGunLHEventProducer.py --pdg $pid --ptmin 1 --ptmax 50000 --etamin -6 --etamax 6 --size $nEvents --seed 1 --output $samplesdir/events_$pid.lhe --log --ecm 100000
|
---|
73 |
|
---|
74 | cp examples/Pythia8/configLHE.cmnd $cmnd
|
---|
75 | echo "Beams:LHEF = $samplesdir/events_$pid.lhe" >> $cmnd
|
---|
76 | echo "Main:numberOfEvents = $nEvents" >> $cmnd
|
---|
77 |
|
---|
78 | ./DelphesPythia8 cards/gen_card.tcl $cmnd $inputroot
|
---|
79 | fi
|
---|
80 |
|
---|
81 | ./DelphesROOT $validationcard $outputrootdir/$outputroot $inputroot
|
---|
82 | }
|
---|
83 |
|
---|
84 |
|
---|
85 | runParticleGun pion 211
|
---|
86 | runParticleGun electron 11
|
---|
87 | runParticleGun muon 13
|
---|
88 | runParticleGun photon 22
|
---|
89 | runParticleGun neutron 2112
|
---|
90 | runParticleGun taujet 15
|
---|
91 | runJetsGun jet 1 &
|
---|
92 | runJetsGun bjet 5 &
|
---|
93 | runJetsGun cjet 4 &
|
---|
94 |
|
---|
95 | wait
|
---|
96 | echo all particle guns complete ...
|
---|
97 |
|
---|
98 |
|
---|
99 | ./Validation $outputrootdir/particleGun_pion_$cardlabel.root $outputrootdir/particleGun_electron_$cardlabel.root $outputrootdir/particleGun_muon_$cardlabel.root $outputrootdir/particleGun_photon_$cardlabel.root $outputrootdir/particleGun_neutron_$cardlabel.root $outputrootdir/particleGun_jet_$cardlabel.root $outputrootdir/particleGun_bjet_$cardlabel.root $outputrootdir/particleGun_cjet_$cardlabel.root $outputrootdir/particleGun_taujet_$cardlabel.root $mainoutputdir/$output $version
|
---|
100 |
|
---|
101 |
|
---|
102 | # produce calo grid plots
|
---|
103 | ./CaloGrid $1 ECal
|
---|
104 | ./CaloGrid $1 HCal
|
---|
105 | gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=tmp/tmp1.pdf $outpdf ECal.pdf
|
---|
106 | gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$outpdf tmp/tmp1.pdf HCal.pdf
|
---|
107 | mv ECal.pdf $mainoutputdir/www/fig/img_ecal.pdf
|
---|
108 | mv ECal.png $mainoutputdir/www/fig/img_ecal.png
|
---|
109 | mv HCal.pdf $mainoutputdir/www/fig/img_hcal.pdf
|
---|
110 | mv HCal.png $mainoutputdir/www/fig/img_hcal.png
|
---|
111 |
|
---|