Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
TwoTrackLCMSCut.h
1/*
2 * TwoTrackLCMSCut.h
3 *
4 * Created on: 04-05-2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#ifndef KINEMATICS_HALTWOTRACKLCMSCUT_H_
10#define KINEMATICS_HALTWOTRACKLCMSCUT_H_
11
12#include "TwoTrackCut.h"
13
14namespace Hal {
16 Float_t fM;
17
18 public:
20 virtual Bool_t Pass(TwoTrack* pair);
21 void SetMass(Double_t m) { fM = m * m; };
22 static Int_t Rout() { return 0; };
23 static Int_t Rside() { return 1; };
24 static Int_t Rlong() { return 2; };
25 virtual ~TwoTrackLCMSCut();
26 ClassDef(TwoTrackLCMSCut, 1)
27 };
28} // namespace Hal
29
30#endif /* KINEMATICS_HALTWOTRACKLCMSCUT_H_ */
virtual Bool_t Pass(TwoTrack *pair)