Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
SmearedEvent.h
1/*
2 * EventSmeared.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 HALSMEAREDEVENT_H_
10#define HALSMEAREDEVENT_H_
11
12#include "ComplexEvent.h"
13
17namespace Hal {
18 class SmearedEvent : public ComplexEvent {
19 Bool_t fSmearing;
20 Bool_t fRealMC;
21
22 public:
27 SmearedEvent(const SmearedEvent& other);
32 SmearedEvent(Event* event);
33 void ActivateSmearing() { fSmearing = kTRUE; };
34 virtual void Update(EventInterface* interface);
35 void Clear(Option_t* opt = " ");
36 TString GetFormatName() const;
37 virtual ~SmearedEvent();
38 ClassDef(SmearedEvent, 1)
39 };
40} // namespace Hal
41
42#endif /* HALSMEAREDEVENT_H_ */
TString GetFormatName() const
virtual void Update(EventInterface *interface)
void Clear(Option_t *opt=" ")