Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
TrackVirtualCut.h
1/*
2 * TrackVirtualCut.h
3 *
4 * Created on: 07-08-2013
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9
10#ifndef HALTRACKVIRTUALCUT_H_
11#define HALTRACKVIRTUALCUT_H_
12
13#include "TrackCut.h"
17namespace Hal {
18 class TrackVirtualCut : public TrackCut {
19 public:
25 virtual Bool_t Pass(Track* /*track*/) {
26 ForcedUpdate(kTRUE);
27 return kTRUE;
28 }
29 virtual ~TrackVirtualCut();
30 ClassDef(TrackVirtualCut, 1)
31 };
32} // namespace Hal
33#endif /* HALTRACKVIRTUALCUT_H_ */
Bool_t ForcedUpdate(Bool_t state)
Definition Cut.cxx:79
virtual Bool_t Pass(Track *)