[eb3be06] | 1 | #!/bin/sh
|
---|
[03d2c3f] | 2 | ################################################################################
|
---|
[fa068d3] | 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 | #
|
---|
[e9971a7] | 16 | # ./examples/validation.sh cards/delphes_card_CMS.tcl 100000
|
---|
[fa068d3] | 17 | #
|
---|
| 18 | # Note that the more events you specify, the more accurate the controls plots will be ...
|
---|
[85ad2b9] | 19 | # This said, 500k events should be ok for most cases.
|
---|
[fa068d3] | 20 | #
|
---|
[03d2c3f] | 21 | ################################################################################
|
---|
[fa068d3] | 22 |
|
---|
| 23 | EXPECTED_ARGS=2
|
---|
| 24 | E_BADARGS=65
|
---|
| 25 |
|
---|
| 26 | if [ $# -ne $EXPECTED_ARGS ]
|
---|
| 27 | then
|
---|
| 28 | echo "Usage: ./examples/validation.sh [detector_card] [number_of_events]"
|
---|
[e9971a7] | 29 | echo "for instance: ./examples/validation.sh cards/delphes_card_CMS.tcl 10000"
|
---|
[fa068d3] | 30 | exit $E_BADARGS
|
---|
| 31 | fi
|
---|
| 32 |
|
---|
[85ad2b9] | 33 | cardbase=$(basename $1)
|
---|
[fa068d3] | 34 | nEvents=$2
|
---|
[85ad2b9] | 35 | output=validation_${cardbase%.*}.root
|
---|
| 36 | mainoutputdir=report_${cardbase%.*}
|
---|
[03d2c3f] | 37 | outputrootdir=report_${cardbase%.*}/root
|
---|
[85ad2b9] | 38 | cardlabel=${cardbase%.*}
|
---|
| 39 | version=$(cat VERSION)
|
---|
| 40 | outpdf=$mainoutputdir/${output%.*}.pdf
|
---|
[03d2c3f] | 41 | cardsdir=validation/cards
|
---|
| 42 | samplesdir=validation/samples
|
---|
| 43 | validationcard=$cardsdir/validation_$cardbase
|
---|
[85ad2b9] | 44 |
|
---|
[03d2c3f] | 45 | mkdir -p $cardsdir
|
---|
| 46 | mkdir -p $samplesdir
|
---|
| 47 | mkdir -p $outputrootdir
|
---|
[6387aea] | 48 | mkdir -p $mainoutputdir/www/fig
|
---|
| 49 |
|
---|
[03d2c3f] | 50 | sed "s/delphes_card_CMS.tcl/$cardbase/g" cards/validation_card.tcl > $validationcard
|
---|
| 51 | sed -i "1i set MaxEvents $nEvents" $validationcard
|
---|
[fa068d3] | 52 |
|
---|
[9f8d4e7] | 53 | function runParticleGun {
|
---|
[360d17e] | 54 | name=$1
|
---|
| 55 | pid=$2
|
---|
[03d2c3f] | 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
|
---|
[9f8d4e7] | 60 | }
|
---|
| 61 |
|
---|
[eb3be06] | 62 |
|
---|
| 63 | function runJetsGun {
|
---|
| 64 | name=$1
|
---|
| 65 | pid=$2
|
---|
[03d2c3f] | 66 | cmnd=$cardsdir/configLHE_$pid.cmnd
|
---|
| 67 | inputroot=$samplesdir/$pid.root
|
---|
| 68 | outputroot=particleGun_${name}_${cardlabel}.root
|
---|
| 69 |
|
---|
| 70 | if [ ! -f $inputroot ]
|
---|
| 71 | then
|
---|
[7e9d3d1] | 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
|
---|
[03d2c3f] | 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
|
---|
[eb3be06] | 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 |
|
---|
[629e819] | 98 |
|
---|
[03d2c3f] | 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
|
---|
[85ad2b9] | 100 |
|
---|
[d3fb80d] | 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
|
---|
[85ad2b9] | 111 |
|
---|