Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
TrackBasicToFCut.h
1/*
2 * ToFBasicCut.h
3 *
4 * Created on: 26 wrz 2017
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#ifndef HALTRACKBASICTOFCUT_H_
10#define HALTRACKBASICTOFCUT_H_
11
12#include "TrackExpCut.h"
13namespace Hal {
15 static const Int_t fgMass2;
16 static const Int_t fgBeta;
17 static const Int_t fgFlag;
18
19 public:
21 Bool_t Init(Int_t formad_id);
22 static Int_t Beta() { return fgBeta; };
23 static Int_t Mass2() { return fgMass2; };
24 static Int_t Flag() { return fgFlag; };
25 virtual Bool_t Pass(Track* tr);
26 virtual ~TrackBasicToFCut();
27 ClassDef(TrackBasicToFCut, 1)
28 };
29} // namespace Hal
30
31#endif /* HALTRACKBASICTOFCUT_H_ */
Bool_t Init(Int_t formad_id)
virtual Bool_t Pass(Track *tr)