]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AlirootRun_MUONtest.sh
Add Config/HighVoltage directory and entry
[u/mrichter/AliRoot.git] / MUON / AlirootRun_MUONtest.sh
index 36679d9679d39167d3e168987971bd7d7a4e35df..a4ff75a0557e0ce92d65105430a9988634f86dfb 100755 (executable)
 #!/bin/sh
 # $Id$
 
+# first declare default values
+
+SIMULATION=1 # will perform simulation
+RECONSTRUCTION=1 # will perform reconstruction
+CHECKS=1 # will perform checks
+NEVENTS=100 # will simulate 100 events
+
+RECOPTIONS="SAVEDIGITS" # default reconstruction options
+SIMCONFIG="$ALICE_ROOT/MUON/Config.C" # default simulation configuration file
+OUTDIR=""
 CURDIR=`pwd`
-OUTDIR=test_out
 
-rm -fr $OUTDIR
-mkdir $OUTDIR
-cp $ALICE_ROOT/MUON/.rootrc $ALICE_ROOT/MUON/rootlogon.C $OUTDIR
+#RUN=0 # run number for OCDB access
+SEED=1234567 # random number generator seed
+SIMDIR="generated" # sub-directory where to move simulated files prior to reco
+DUMPEVENT=5 # event to be dump on files
+
+# next try to see if there are options of this script that want to change the
+# defaults
+EXIT=0
+
+while getopts "SRX:srxn:p:d:c:" option
+do
+  case $option in
+    R ) RECONSTRUCTION=1;;
+    S ) SIMULATION=1;;
+    X ) 
+    CHECKS=1
+    DUMPEVENT=$OPTARG
+    ;;
+    r ) RECONSTRUCTION=0;;
+    s ) SIMULATION=0;;
+    x ) CHECKS=0;;
+    c ) SIMCONFIG=$OPTARG;;
+    d ) OUTDIR=$OPTARG;;
+    n ) NEVENTS=$OPTARG;;
+    p ) RECOPTIONS=$OPTARG;; 
+    *     ) echo "Unimplemented option chosen."
+    EXIT=1
+    ;;
+  esac
+done
+
+if [ ! -n "$OUTDIR" ]; then
+  OUTDIR="$CURDIR/test_out.$NEVENTS"
+fi
+
+# look if there are some leftover options
+shift $(($OPTIND - 1))
+
+if [ $# -gt 0 ] || [ "$EXIT" -eq 1 ]; then
+  echo "ERROR : extra option not recognized"
+  echo "Usage: `basename $0` options (-SRXsrxn:p:d:c:)"
+  echo "       -S (-s) perform (or not) simulation (default is do it, i.e -S)"
+  echo "       -R (-r) perform (or not) reconstruction (default is do it, i.e. -R)"
+  echo "       -X event (-x) perform (or not) checks and dumps (default is do it for event $DUMPEVENT, i.e. -X $DUMPEVENT)"
+  echo "       -n nevents (int) number of events to simulate (default $NEVENTS)"
+  echo "       -p recoptions (quotified string) reconstruction options to use (default \"$RECOPTIONS\")"
+  echo "       -d full path to output directory (default $OUTDIR)"
+  echo "       -c full path to configuration file for simulation (default $SIMCONFIG)"
+  exit 4;
+fi
+
+# printout the options
+echo "sim $SIMULATION rec $RECONSTRUCTION check $CHECKS"
+if [ "$SIMULATION" -eq 1 ]; then
+  echo "$NEVENTS events will be simulated, using the config found at $SIMCONFIG"
+fi
+if [ "$RECONSTRUCTION" -eq 1 ]; then
+echo "Reconstruction options to be used : $RECOPTIONS"
+fi
+echo "Output directory will be : $OUTDIR"
+
+if [ "$SIMULATION" -eq 1 ]; then
+
+  rm -fr $OUTDIR
+  mkdir $OUTDIR
+
+fi
+
+cp $ALICE_ROOT/MUON/.rootrc $ALICE_ROOT/MUON/rootlogon.C \
+  $ALICE_ROOT/MUON/runReconstruction.C $ALICE_ROOT/MUON/runSimulation.C $OUTDIR
+
 cd $OUTDIR
 
-FULLPATH="$CURDIR/$OUTDIR"
-NEVENTS=100
-SEED=1234567
-
-echo "Running simulation  ..."
-
-aliroot -b  >& testSim.out << EOF 
-// Uncoment following lines to run simulation with local residual mis-alignment
-// (generated via MUONGenerateGeometryData.C macro)
-// AliCDBManager* man = AliCDBManager::Instance();
-// man->SetDefaultStorage("local://$ALICE_ROOT");
-// man->SetSpecificStorage("MUON","local://$ALICE_ROOT/MUON/ResMisAlignCDB");
-gRandom->SetSeed($SEED);
-AliSimulation MuonSim("$ALICE_ROOT/MUON/Config.C");
-MuonSim.SetMakeTrigger("MUON");
-MuonSim.SetWriteRawData("MUON");
-MuonSim.Run($NEVENTS);
-.q
-EOF
+###############################################################################
+# 
+# Performing SIMULATION
+#
+###############################################################################
 
-echo "Running reconstruction  ..."
-
-aliroot -b >& testReco.out << EOF
-gRandom->SetSeed($SEED);
-AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
-AliTracker::SetFieldMap(field, kFALSE);
-AliReconstruction MuonRec("galice.root");
-MuonRec.SetInput("$FULLPATH/");
-MuonRec.SetRunTracking("");
-MuonRec.SetRunVertexFinder(kFALSE);
-MuonRec.SetRunLocalReconstruction("MUON");
-MuonRec.SetFillESD("MUON");
-MuonRec.SetLoadAlignData("MUON");
-// Uncoment following line to run reconstruction with the orginal tracking method
-// instead of the kalman one (default)
-// MuonRec.SetOption("MUON","Original");
-MuonRec.Run();
-.q
-EOF
+if [ "$SIMULATION" -eq 1 ]; then
 
-echo "Running Trigger efficiency  ..."
-aliroot -b >& testTriggerResults.out << EOF
-.L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
-MUONTriggerEfficiency();
-.q
-EOF
+  echo "Running simulation  ..."
 
-echo "Running efficiency  ..."
+  aliroot -b -q runSimulation.C\($SEED,$NEVENTS,\""$SIMCONFIG"\"\) >& $OUTDIR/testSim.out 
+  
+  echo "Moving generated files to $SIMDIR"
+  mkdir $OUTDIR/$SIMDIR
+  mv $OUTDIR/MUON*.root $OUTDIR/Kinematics*.root $OUTDIR/galice.root $OUTDIR/TrackRefs*.root $OUTDIR/$SIMDIR
 
-aliroot -b >& testResults.out << EOF
-.L $ALICE_ROOT/MUON/MUONefficiency.C+
-// no argument assumes Upsilon but MUONefficiency(443) works on Jpsi
-MUONefficiency();
-.q
-EOF
+fi
+
+###############################################################################
+# 
+# Performing RECONSTRUCTION
+#
+###############################################################################
+
+if [ "$RECONSTRUCTION" -eq 1 ]; then
+
+  rm -f galice.root AliESD*.root
+
+  echo "Running reconstruction  ..."
+
+  cd $OUTDIR
+  
+  aliroot -b -q runReconstruction\.C\($SEED,\""$OUTDIR/raw.root"\",\""$RECOPTIONS"\"\) >& $OUTDIR/testReco.out
+
+fi
+
+###############################################################################
+# 
+# Performing CHECKS (and dumps)
+#
+###############################################################################
 
-if [ "$NEVENTS" -le 20 ]; then
+if [ "$CHECKS" -eq 1 ]; then
 
-echo "Running dumps ..."
+  if [ -f "$OUTDIR/$SIMDIR/galice.root" ]; then
 
-aliroot -b << EOF
-.L $ALICE_ROOT/MUON/MUONCheck.C+
-MUONdigits(); > check.digits
-MUONrecpoints(); > check.recpoints
-MUONrectracks(); > check.rectracks
-MUONrectrigger(); > check.rectrigger
-.q
+    echo "Running efficiency  ..."
+
+    aliroot -b >& $OUTDIR/testResults.out << EOF
+    .L $ALICE_ROOT/MUON/MUONefficiency.C+
+    // no argument assumes Upsilon but MUONefficiency(443) works on Jpsi
+    MUONefficiency("$OUTDIR/$SIMDIR/galice.root");
+    .q
+EOF
+
+  if [ -f "$OUTDIR/galice.root" ]; then
+
+      echo "Running Trigger efficiency  ..."
+      aliroot -b >& $OUTDIR/testTriggerResults.out << EOF
+      .L $ALICE_ROOT/MUON/MUONTriggerEfficiency.C+
+      MUONTriggerEfficiency("$OUTDIR/$SIMDIR/galice.root", "$OUTDIR/galice.root", 1);
+      .q
 EOF
 
+      if [ -f "$OUTDIR/AliESDs.root" ]; then
+
+        echo "Running check ..."
+        aliroot -b >& $OUTDIR/testCheck.out << EOF
+        gSystem->Load("libMUONevaluation");
+        .L $ALICE_ROOT/MUON/MUONCheck.C+
+        MUONCheck(0, $NEVENTS-1, "$OUTDIR/$SIMDIR/galice.root", "$OUTDIR/galice.root", "$OUTDIR/AliESDs.root"); 
+        .q
+EOF
+      fi
+    fi
+  fi
+
+  echo "Running dumps for selected event ($DUMPEVENT) ..."
+
+  if [ -f "$OUTDIR/$SIMDIR/galice.root" ]; then
+    aliroot -b  << EOF
+    AliCDBManager* man = AliCDBManager::Instance();
+    man->SetDefaultStorage("local://$ALICE_ROOT");
+    AliMUONMCDataInterface mcdSim("$OUTDIR/$SIMDIR/galice.root");
+    mcdSim.DumpKine($DUMPEVENT);       > $OUTDIR/dump.$DUMPEVENT.kine
+    mcdSim.DumpHits($DUMPEVENT);       > $OUTDIR/dump.$DUMPEVENT.hits
+    mcdSim.DumpTrackRefs($DUMPEVENT);  > $OUTDIR/dump.$DUMPEVENT.trackrefs
+    mcdSim.DumpDigits($DUMPEVENT,true);     > $OUTDIR/dump.$DUMPEVENT.simdigits
+    mcdSim.DumpSDigits($DUMPEVENT,true);    > $OUTDIR/dump.$DUMPEVENT.sdigits
+    .q
+EOF
+  else
+    echo "$OUTDIR/$SIMDIR/galice.root is not there. Skipping sim dumps"
+  fi
+
+  if [ -f "$OUTDIR/galice.root" ]; then
+    aliroot -b << EOF
+    AliCDBManager* man = AliCDBManager::Instance();
+    man->SetDefaultStorage("local://$ALICE_ROOT");
+    AliMUONDataInterface dRec("$OUTDIR/galice.root");
+    dRec.DumpDigits($DUMPEVENT,true); > $OUTDIR/dump.$DUMPEVENT.recdigits
+    dRec.DumpRecPoints($DUMPEVENT);  > $OUTDIR/dump.$DUMPEVENT.recpoints
+    dRec.DumpTrigger($DUMPEVENT); > $OUTDIR/dump.$DUMPEVENT.trigger
+    .q
+EOF
+  else
+    echo "$OUTDIR/galice.root is not there. Skipping rec dumps"
+  fi
 fi
 
 echo "Finished"  
-echo "... see results in test_out"
+echo "... see results in $OUTDIR"
 
 cd $CURDIR