-
Notifications
You must be signed in to change notification settings - Fork 539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PWGLF] Configurables for eta range selection and THnSparse in spectarTOF.cxx #3047
Conversation
PWGLF/Tasks/spectraTOF.cxx
Outdated
@@ -44,7 +44,9 @@ using namespace o2::framework::expressions; | |||
struct tofSpectra { | |||
Configurable<float> cfgNSigmaCut{"cfgNSigmaCut", 3, "Value of the Nsigma cut"}; | |||
Configurable<float> cfgCutVertex{"cfgCutVertex", 10.0f, "Accepted z-vertex range"}; | |||
Configurable<float> cfgCutEta{"cfgCutEta", 0.8f, "Eta range for tracks"}; | |||
Configurable<float> cfgCutEtaMax{"cfgCutEtaMax", 0.8f, "Max eta range for tracks"}; | |||
Configurable<float> cfgCutEtaMin{"cfgCutEtaMin", 0.8f, "Min eta range for tracks"}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @jloemker can't you remove the absolute value in the check and put -0.8
in the configurable, it's not obvious that it will be symmetrical
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @njacazio ,
I included your suggestion and added one more histogram for the eta distribution of the tracks in the collision (processDerived).
Many Thanks !
Head branch was pushed to by a user without write access
I think CI is spurious |
…rTOF.cxx (AliceO2Group#3047) * confugurables for eta range and THnSparse * clang formatting for PR * include suggestions for eta range and eta track histogram * Extend binning of nsigma - Streamline * fix dervied tables * adjust max,min binning --------- Co-authored-by: Nicolò Jacazio <nicolo.jacazio@cern.ch>
…rTOF.cxx (AliceO2Group#3047) * confugurables for eta range and THnSparse * clang formatting for PR * include suggestions for eta range and eta track histogram * Extend binning of nsigma - Streamline * fix dervied tables * adjust max,min binning --------- Co-authored-by: Nicolò Jacazio <nicolo.jacazio@cern.ch>
…rTOF.cxx (AliceO2Group#3047) * confugurables for eta range and THnSparse * clang formatting for PR * include suggestions for eta range and eta track histogram * Extend binning of nsigma - Streamline * fix dervied tables * adjust max,min binning --------- Co-authored-by: Nicolò Jacazio <nicolo.jacazio@cern.ch>
…rTOF.cxx (AliceO2Group#3047) * confugurables for eta range and THnSparse * clang formatting for PR * include suggestions for eta range and eta track histogram * Extend binning of nsigma - Streamline * fix dervied tables * adjust max,min binning --------- Co-authored-by: Nicolò Jacazio <nicolo.jacazio@cern.ch>
…rTOF.cxx (AliceO2Group#3047) * confugurables for eta range and THnSparse * clang formatting for PR * include suggestions for eta range and eta track histogram * Extend binning of nsigma - Streamline * fix dervied tables * adjust max,min binning --------- Co-authored-by: Nicolò Jacazio <nicolo.jacazio@cern.ch>
Hi @njacazio ,
here are two additional configurables to select a certain eta range for the analysis and the modification for the nsigmaTPCTOF to use the THnSparse.
Let me know if I should change something (or add more to the task).
Best,
Johanna