Skip to content
Snippets Groups Projects
Commit ea846e99 authored by Cornelius Feier-Riesen's avatar Cornelius Feier-Riesen Committed by Florian Uhlig
Browse files

Adjust electron ID cuts

parent 7d625cc9
No related branches found
No related tags found
1 merge request!636Add cut efficiency and likelihood histograms
......@@ -29,7 +29,7 @@
#include <cmath>
CbmLitGlobalElectronId::CbmLitGlobalElectronId()
: fTrdAnnCut(0.6)
: fTrdAnnCut(0.1)
, fRichAnnCut(-0.4)
, fRichUseAnn(true)
, fRichMeanA(-1.)
......@@ -107,7 +107,7 @@ Bool_t CbmLitGlobalElectronId::IsTofElectron(Int_t globalTrackIndex, Double_t mo
Double_t mass2 = GetTofM2(globalTrackIndex, momentum, eventTime);
if (mass2 == -1.) return false;
if (momentum >= 1.) {
if (momentum >= 1.25) {
if (mass2 < (0.013 * momentum - 0.003)) { return true; }
}
else {
......
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