KaliVeda
Toolkit for HIC analysis
KVDataPatch.h
1 
4 #ifndef __KVDATAPATCH_H
5 #define __KVDATAPATCH_H
6 
7 #include "KVBase.h"
8 #include "KVReconstructedEvent.h"
9 
55 class KVDataPatch : public KVBase {
56 
57 public:
59  KVDataPatch(const Char_t* name, const Char_t* title = "")
60  : KVBase(name,title)
61  {}
62 
63  virtual Bool_t IsRequired(TString dataset, TString datatype, Int_t runnumber,
64  TString dataseries, Int_t datareleasenumber, const TList* streamerinfolist) = 0;
65  virtual Bool_t IsEventPatch() = 0;
66  virtual Bool_t IsParticlePatch() = 0;
67  virtual void ApplyToEvent(KVReconstructedEvent*) = 0;
69 
70  virtual void PrintPatchInfo() const = 0;
71 
72  void Print(Option_t* /*opt*/ = "") const;
73 
74  ClassDef(KVDataPatch, 1) //Correction to be applied to reconstructed calibrated data
75 };
76 
77 #endif
Base class for KaliVeda framework.
Definition: KVBase.h:142
Correction to be applied to reconstructed calibrated data.
Definition: KVDataPatch.h:55
virtual void ApplyToParticle(KVReconstructedNucleus *)=0
void Print(Option_t *="") const
Print infos on patch.
Definition: KVDataPatch.cpp:12
virtual void ApplyToEvent(KVReconstructedEvent *)=0
virtual void PrintPatchInfo() const =0
KVDataPatch(const Char_t *name, const Char_t *title="")
Definition: KVDataPatch.h:59
virtual Bool_t IsParticlePatch()=0
virtual Bool_t IsRequired(TString dataset, TString datatype, Int_t runnumber, TString dataseries, Int_t datareleasenumber, const TList *streamerinfolist)=0
virtual Bool_t IsEventPatch()=0
Event containing KVReconstructedNucleus nuclei reconstructed from hits in detectors.
Nuclei reconstructed from data measured by a detector array .