Skip to content

Commit

Permalink
Adds basic reconstruction files.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSchuy committed Oct 23, 2017
1 parent b6b2cc0 commit ad97f6e
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 6 deletions.
13 changes: 13 additions & 0 deletions digitizer_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
chmod a+x digitizer_setup.sh

RunNumber=304795
HITSFile="${RunNumber}.1.1.HITS"
RDOFile="${RunNumber}.1.1.RDO"

(
Digi_tf.py --inputHitsFile $HITSFile --outputRDOFile $RDOFile --maxEvents -1 --skipEvents 0 --geometryVersion ATLAS-R2-2015-03-01-00_VALIDATION --conditionsTag OFLCOND-RUN12-SDR-20
)



8 changes: 2 additions & 6 deletions generator_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,16 @@ StartingBatch=1
EndingBatch=20
MaxSeed=$((30081*30081))

echo "Starting the Generation Step"

(
source $AtlasSetup/scripts/asetup.sh here,19.2.4.14
(
for ((i=StartingBatch ; i <= EndingBatch ; i++))
do
# The generator has trouble cleaning up its temporary files, so do so for it.
rm -r PROC_HAHM_variableMW_v3_UFO_*
EVNTFile="${RunNum}.${EventsPerBatch}.${i}.EVNT"
echo "$EVNTFile"
FirstEvent=$(($EventsPerBatch*($i-1)+1))
echo "$FirstEvent"
Seed=$(($(date +"%s") % MaxSeed))
echo "$Seed"
echo "MC Seed = $Seed"
Generate_tf.py --jobConfig hss-runner.py --maxEvents $EventsPerBatch --runNumber $RunNum --firstEvent $FirstEvent --outputEVNTFile $EVNTFile --ecmEnergy 13000 --randomSeed $Seed --printEvts 3
done
)
11 changes: 11 additions & 0 deletions reconstructor_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
chmod a+x simulator_setup.sh

RunNumber=304795
RDOFile="${RunNumber}.1.1.RDO"
ESDFile="${RunNumber}.1.1.ESD"

(
Reco_tf.py --inputRDOFile $RDOFile --outputESDFile $ESDFile --maxEvents=-1 --skipEvents 0 --DBRelease current --autoConfiguration='everything'
)

11 changes: 11 additions & 0 deletions simulator_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
chmod a+x simulator_setup.sh

RunNumber=304795
EVNTFile="${RunNumber}.1.1.EVNT"
HITSFile="${RunNumber}.1.1.HITS"

(
Sim_tf.py --inputEVNTFile $EVNTFile --DataRunNumber $RunNumber --geometryVersion ATLAS-R2-2015-03-01-00_VALIDATION --conditionsTag OFLCOND-RUN12-SDR-20 --outputHITSFile $HITSFile --physicsList "FTFP_BERT" --postInclude "PyJobTransforms/UseFrontier.py" --preInclude "EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py" --maxEvents -1 --randomSeed "8" --simulator "MC12G4" --truthStrategy "MC12"

)

0 comments on commit ad97f6e

Please sign in to comment.