Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
EventModuloCut.h
1/*
2 * EventModuloCut.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 HALEVENTMODULOCUT_H_
10#define HALEVENTMODULOCUT_H_
11#include "EventCut.h"
12
19namespace Hal {
20 class EventModuloCut : public EventCut {
21 Int_t fCount;
22 Int_t fModulo;
23
24 public:
25 EventModuloCut(Int_t modulo = 1);
26 void SetModulo(Int_t modulo) { fModulo = modulo; };
27 Bool_t Pass(Event* event);
28 virtual ~EventModuloCut();
29 virtual Package* Report() const;
30 ClassDef(EventModuloCut, 1)
31 };
32} // namespace Hal
33#endif /* HALEVENTMODULOCUT_H_ */
virtual Package * Report() const
Bool_t Pass(Event *event)