Skip to content
Snippets Groups Projects
Commit 0baa994d authored by Eva Guilloton's avatar Eva Guilloton
Browse files

TrigInDetAnalysisUser : changes the cuts on a0 and z0 for LRT samples

Changes the histo ranges for LRT samples

Changes the way of of controlling settings in the test jobs
parent 73ca7e17
No related branches found
No related tags found
No related merge requests found
......@@ -22,9 +22,13 @@ Rmatch = 0.05;
dumpflag = 1;
a0v = 10.5;
z0v = 300.5;
#if defined(LRT)
a0v = 100.;
z0v = 300.5;
#else
a0v = 10.5;
z0v = 300.5;
#endif
// VertexSelection = 0;
// VertexSelectionRec = 0;
......@@ -20,5 +20,10 @@ Rmatch = 0.05;
dumpflag = 1;
a0v = 10.5;
z0v = 10.5;
#if defined(LRT)
a0v = 100.;
z0v = 100.;
#else
a0v = 10.5;
z0v = 10.5;
#endif
\ No newline at end of file
// emacs: this is -*- c++ -*-
// e_ for electron,
// mu_ for muon,
// tau_ for tau
// bjet_ for bjets
// current bins
// eta :: 10
// phi :: 30
// z0 :: 30
// d0 :: 2
// pT :: 13
e_ptNScale = 0.75;
e_etaNScale = 0.50;
e_phiNScale = 0.33;
e_d0NScale = 1.0;
e_a0NScale = 0.15;
e_z0NScale = 0.33;
mu_ptNScale = 0.75;
mu_etaNScale = 0.5;
mu_phiNScale = 0.33;
mu_d0NScale = 1.0;
mu_a0NScale = 0.15;
mu_z0NScale = 0.33;
mu_d0Max = 100.;
mu_a0Max = 100.;
tau_ptNScale = 0.75;
tau_etaNScale = 0.5;
tau_phiNScale = 0.33;
tau_d0NScale = 1.0;
tau_z0NScale = 0.33;
bjet_ptNScale = 0.75;
bjet_etaNScale = 0.5;
bjet_phiNScale = 0.33;
bjet_d0NScale = 1.0;
bjet_z0NScale = 0.33;
......@@ -186,6 +186,7 @@ class TrigInDetRdictStep(Step):
os.system( 'get_files -data TIDAbeam.dat &> /dev/null' )
os.system( 'get_files -data Test_bin.dat &> /dev/null' )
os.system( 'get_files -data Test_bin_larged0.dat &> /dev/null' )
os.system( 'get_files -data Test_bin_lrt.dat &> /dev/null' )
os.system( 'get_files -data TIDAdata-chains-run3.dat &> /dev/null' )
os.system( 'get_files -data TIDAhisto-panel.dat &> /dev/null' )
os.system( 'get_files -data TIDAhisto-panel-vtx.dat &> /dev/null' )
......
......@@ -29,7 +29,6 @@
Slices = ['L2muonLRT']
LRT = True
RunEF = True
Events = 8000
Threads = 8
Slots = 8
......@@ -40,10 +39,12 @@ GridFiles = False
Jobs = [ ( "Truth", " TIDAdata-run3-lrt.dat -o data-hists.root -p 13" ),
( "Offline", " TIDAdata-run3-offline-lrt.dat -r Offline -o data-hists-offline.root" ) ]
Comp = [ ( "L2muonLRT", "L2muonLRT", "data-hists.root", " -c TIDAhisto-panel.dat -d HLTL2-plots " ) ]
Comp = [ ( "L2muonLRT", "L2muonLRT", "data-hists.root", " -c TIDAhisto-panel.dat -d HLTL2-plots -sx Reference Truth " ),
#( "EFmuonLRT", "EFmuonLRT", "data-hists.root", " -c TIDAhisto-panel.dat -d HLTEF-plots -sx Reference Truth " ),
( "L2muonLRToffline", "L2muonLRT","data-hists-offline.root", " -c TIDAhisto-panel.dat -d HLTL2-plots-offline -sx Reference Offline " ),
#( "EFmuonLRToffline", "E2muonLRT", "data-hists-offline.root", " -c TIDAhisto-panel.dat -d HLTE2-plots-offline -sx Reference Offline " )
]
TrackReference = [ 'Truth', 'Offline' ]
Lowpt = [ False, True ]
from AthenaCommon.Include import include
include("TrigInDetValidation/TrigInDetValidation_Base.py")
......@@ -29,21 +29,22 @@
Slices = ['L2muonLRT']
LRT = True
RunEF = True
Events = 8000
Threads = 8
Slots = 8
Input = 'Zmumu_pu40' # defined in TrigValTools/share/TrigValInputs.json
GridFiles=True
GridFiles = True
Jobs = [ ( "Truth", " TIDAdata-run3-lrt.dat -o data-hists.root -p 13" ),
( "Offline", " TIDAdata-run3-offline-lrt.dat -r Offline -o data-hists-offline.root" ) ]
Comp = [ ( "L2muonLRT", "L2muonLRT", "data-hists.root", " -c TIDAhisto-panel.dat -d HLTL2-plots " ) ]
Comp = [ ( "L2muonLRT", "L2muonLRT", "data-hists.root", " -c TIDAhisto-panel.dat -d HLTL2-plots -sx Reference Truth" ),
# ( "EFmuonLRT", "EFmuonLRT", "data-hists.root", " -c TIDAhisto-panel.dat -d HLTEF-plots -sx Reference Truth " ),
( "L2muonLRToffline", "L2muonLRT", "data-hists-offline.root", " -c TIDAhisto-panel.dat -d HLTL2-plots-offline -sx Reference Offline " ),
#( "EFmuonLRToffline", "E2muonLRT", "data-hists-offline.root", " -c TIDAhisto-panel.dat -d HLTE2-plots-offline -sx Reference Offline " )
]
TrackReference = [ 'Truth', 'Offline' ]
Lowpt = [ False, True ]
from AthenaCommon.Include import include
include("TrigInDetValidation/TrigInDetValidation_Base.py")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment