Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
TwoTrackDCACut.h
1/*
2 * TwoTrackDCACut.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 HALTWOTRACKDCACUT_H_
10#define HALTWOTRACKDCACUT_H_
11
12#include "TwoTrackCut.h"
13
14namespace Hal {
15 class TwoTrackDCACut : public TwoTrackCut {
16 public:
18 virtual Bool_t Pass(TwoTrack* pair);
19 static Int_t DCA() { return 0; };
20 static Int_t DCAxy() { return 1; };
21 static Int_t DCAz() { return 2; };
22 virtual ~TwoTrackDCACut();
23 ClassDef(TwoTrackDCACut, 1)
24 };
25} // namespace Hal
26#endif /* HALTWOTRACKDCACUT_H_ */
virtual Bool_t Pass(TwoTrack *pair)