Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
TrackPdgBinCut.h
1/*
2 * TrackPdgBinCut.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 HALTRACKPDGBINCUT_H_
10#define HALTRACKPDGBINCUT_H_
11
12#include "TrackCut.h"
13
14namespace Hal {
15
16 class TrackPdgBinCut : public TrackCut {
17 public:
19 virtual Bool_t Pass(Track* track);
20 virtual std::vector<std::pair<TString, Double_t>> GetBinLabels() const;
21 virtual ~TrackPdgBinCut();
22 ClassDef(TrackPdgBinCut, 1);
23 };
24} // namespace Hal
25#endif /* HALTRACKPDGBINCUT_H_ */
virtual Bool_t Pass(Track *track)