X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PWGCF%2FFEMTOSCOPY%2FAliFemto%2FAliFemtoV0TrackCut.h;fp=PWGCF%2FFEMTOSCOPY%2FAliFemto%2FAliFemtoV0TrackCut.h;h=0000000000000000000000000000000000000000;hb=c627660e3ea095ed462f5ce4ad36a184f40e0dd7;hp=23a156780f455c185939b55db5b956684d974849;hpb=d85f6819269447083582dbf4349395fe419ff1f5;p=u%2Fmrichter%2FAliRoot.git diff --git a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoV0TrackCut.h b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoV0TrackCut.h deleted file mode 100644 index 23a156780f4..00000000000 --- a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoV0TrackCut.h +++ /dev/null @@ -1,92 +0,0 @@ -/////////////////////////////////////////////////////////////////////////// -// // -// AliFemtoESDTrackCut: A basic track cut that used information from // -// ALICE ESD to accept or reject the track. // -// Enables the selection on charge, transverse momentum, rapidity, // -// pid probabilities, number of ITS and TPC clusters // -// Author: Marek Chojnacki (WUT), mchojnacki@knf.pw.edu.pl // -// // -/////////////////////////////////////////////////////////////////////////// - -#ifndef ALIFEMTOV0TRACKCUT_H -#define ALIFEMTOV0TRACKCUT_H - -#include "AliFemtoTrackCut.h" - -class AliFemtoV0TrackCut : public AliFemtoParticleCut -{ - public: - enum V0Type {kLambda = 0, kAntiLambda=1, kAll=99, kLambdaMC=101, kAntiLambdaMC=102}; - typedef enum V0Type AliFemtoV0Type; - - - AliFemtoV0TrackCut(); - virtual ~AliFemtoV0TrackCut(); - - virtual bool Pass(const AliFemtoV0* aV0); - - virtual AliFemtoString Report(); - virtual TList *ListSettings(); - virtual AliFemtoParticleType Type(){return hbtV0;} - - void SetInvariantMassLambda(double,double); - void SetMinDaughtersToPrimVertex(double,double); - void SetMaxDcaV0Daughters(double); - void SetMaxDcaV0(double); - void SetMaxCosPointingAngle(double); - void SetMaxV0DecayLength(double); - void SetParticleType(short); - void SetEta(double); - void SetPt(double,double); - void SetEtaDaughters(float); - void SetTPCnclsDaughters(int); - void SetNdofDaughters(int); - void SetStatusDaughters(unsigned long); - void SetPtPosDaughter(float,float); - void SetPtNegDaughter(float,float); - void SetOnFlyStatus(bool); - void SetMinAvgSeparation(double); - - //----n sigma---- - bool IsKaonTPCdEdxNSigma(float mom, float nsigmaK); - bool IsKaonTOFNSigma(float mom, float nsigmaK); - bool IsKaonNSigma(float mom, float nsigmaTPCK, float nsigmaTOFK); - bool IsPionNSigma(float mom, float nsigmaTPCPi, float nsigmaTOFPi); - bool IsProtonNSigma(float mom, float nsigmaTPCP, float nsigmaTOFP); - - private: // here are the quantities I want to cut on... - - double fInvMassLambdaMin; //invariant mass lambda min - double fInvMassLambdaMax; //invariant mass lambda max - double fMinDcaDaughterPosToVert; //DCA of positive daughter to primary vertex - double fMinDcaDaughterNegToVert; //DCA of negative daughter to primary vertex - double fMaxDcaV0Daughters; //Max DCA of v0 daughters at Decay vertex - double fMaxDcaV0; - double fMaxDecayLength; - - double fMaxCosPointingAngle; - short fParticleType; //0-lambda - double fEta; - double fPtMin; - double fPtMax; - bool fOnFlyStatus; - - float fMaxEtaDaughters; // Eta of positive daughter - int fTPCNclsDaughters; // No. of cls of pos daughter - int fNdofDaughters; // No. of degrees of freedom of the pos. daughter track - unsigned long fStatusDaughters; // Status (tpc refit, its refit...) - float fPtMinPosDaughter; - float fPtMaxPosDaughter; - float fPtMinNegDaughter; - float fPtMaxNegDaughter; - double fMinAvgSepDaughters; - -#ifdef __ROOT__ - ClassDef(AliFemtoV0TrackCut, 1) -#endif - -}; - - -#endif -