Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
V0CandBasicCut.h
1/*
2 * V0BasicCut.h
3 *
4 * Created on: 05-05-2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#ifndef HALV0CANDBASICCUT_H_
10#define HALV0CANDBASICCUT_H_
14#include "TwoTrackCut.h"
15
16namespace Hal {
17 class V0CandBasicCut : public TwoTrackCut {
18 public:
20 virtual Bool_t Pass(TwoTrack* pair);
21 static Int_t DCA1to2() { return 0; };
22 static Int_t DCAToPV() { return 1; };
23 static Int_t PtArm() { return 2; };
24 static Int_t AlphaArm() { return 3; };
25 static Int_t CosAngle() { return 4; };
26 static Int_t DecLength() { return 5; };
27 virtual ~V0CandBasicCut();
28 ClassDef(V0CandBasicCut, 1)
29 };
30} // namespace Hal
31#endif /* HALV0CANDBASICCUT_H_ */
virtual Bool_t Pass(TwoTrack *pair)