Skip to content
Snippets Groups Projects
Commit 8ac6aa24 authored by Mark Sutton's avatar Mark Sutton Committed by Melissa Yexley
Browse files

Increase eta range for track selection

Increase eta range for track selection

Previously had a hardcoded limit of |eta|<3.0 for the track selection. This is widened
to allow analyses for the ITk. In addition, the decription of a previously undocumented
command line option for the TrigInDetValidation jobs has been addewd
parent 8bd83abe
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ std::set<std::string> AnalysisConfigMT_Ntuple::get_configured_chains() { ...@@ -86,7 +86,7 @@ std::set<std::string> AnalysisConfigMT_Ntuple::get_configured_chains() {
} }
++chainitr; ++chainitr;
} }
m_chainNames = chainNames; m_chainNames = chainNames;
...@@ -126,8 +126,9 @@ void AnalysisConfigMT_Ntuple::loop() { ...@@ -126,8 +126,9 @@ void AnalysisConfigMT_Ntuple::loop() {
/// FIXME: should really have hardcoded limits encoded as /// FIXME: should really have hardcoded limits encoded as
/// const variables /// const variables
Filter_etaPT filterRef(5,500); Filter_etaPT filterRef(5,500);
Filter_etaPT filter_etaPT(3.0,m_ptmin); /// use wide |eta|<5 range to allow for ITk studies also
Filter_pdgIdpTeta filter_pdgIdpTeta(m_TruthPdgId,3.0,m_ptmin); // |eta|<3, pt>1GeV Filter_etaPT filter_etaPT(5.0,m_ptmin);
Filter_pdgIdpTeta filter_pdgIdpTeta(m_TruthPdgId,5.0,m_ptmin); // |eta|<5, pt>m_ptmin
TrackFilter* truthFilter = &filter_etaPT; TrackFilter* truthFilter = &filter_etaPT;
......
...@@ -21,6 +21,7 @@ except getopt.GetoptError: ...@@ -21,6 +21,7 @@ except getopt.GetoptError:
print("-l | --local run locally with input file from art eos grid-input") print("-l | --local run locally with input file from art eos grid-input")
print("-x don't run athena or post post-processing, only plotting") print("-x don't run athena or post post-processing, only plotting")
print("-m run cost monitoring plotting, even if -x is set") print("-m run cost monitoring plotting, even if -x is set")
print("-r run only ntuple building stage")
print("-p run post-processing, even if -x is set") print("-p run post-processing, even if -x is set")
print("-n N run only on N events per job") print("-n N run only on N events per job")
print("-c | --config run with config_only and print to a pkl file") print("-c | --config run with config_only and print to a pkl file")
......
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