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