KaliVeda
Toolkit for HIC analysis
KVDataPatchList.cpp
1 //Created by KVClassFactory on Thu Jan 30 11:06:10 2014
2 //Author: John Frankland,,,
3 
4 #include "KVDataPatchList.h"
5 #include "KVDataPatch.h"
6 #include <TPluginManager.h>
7 
8 ClassImp(KVDataPatchList)
9 
11 
12 
15 
17 {
18  // Fill static list of patches from KVDataPatch plugin list
19 
20  KVString plugins = GetListOfPlugins("KVDataPatch");
21  if (plugins == "") {
22  Info("FillPatchList", "No data patch plugins defined");
23  return;
24  }
25  plugins.Begin(" ");
26  while (!plugins.End()) {
27  KVString plug = plugins.Next(kTRUE);
28  TPluginHandler* h = LoadPlugin("KVDataPatch", GetPluginURI("KVDataPatch", plug));
29  if (h) {
30  KVDataPatch* p = (KVDataPatch*)h->ExecPlugin(0);
31  fPatchList->Add(p);
32  }
33  else
34  Warning("FillPatchList", "Cannot load plugin data patch %s", plug.Data());
35  }
36 }
37 
38 
39 
41 
43 {
44  fEventPatches = kFALSE;
45  fParticlePatches = kFALSE;
46  if (!fPatchList) {
48  FillPatchList();
49  }
50 }
51 
52 
53 
56 
57 void KVDataPatchList::InitializePatchList(TString dataset, TString datatype, Int_t runnumber,
58  TString dataseries, Int_t datareleasenumber, const TList* streamerinfolist)
59 {
60  // Fill lists of active patches for given data
61 
62  Info("InitializePatchList",
63  "Initializing patches for |%s|%s|%04d|%s|%02d|",
64  dataset.Data(), datatype.Data(), runnumber, dataseries.Data(), datareleasenumber);
67  fEventPatches = kFALSE;
68  fParticlePatches = kFALSE;
69  TIter nxtP(fPatchList);
70  KVDataPatch* patch;
71  while ((patch = (KVDataPatch*)nxtP())) {
72  if (patch->IsRequired(dataset, datatype, runnumber, dataseries, datareleasenumber, streamerinfolist)) {
73  if (patch->IsEventPatch()) {
74  fActiveEventPatches.Add(patch);
75  fEventPatches = kTRUE;
76  }
77  if (patch->IsParticlePatch()) {
79  fParticlePatches = kTRUE;
80  }
81  }
82  }
83 }
84 
85 
86 
89 
91 {
92  // Apply all currently active patches to event
93 
94  if (fEventPatches) {
95  // Apply event-level patches
96  TIter nxt(&fActiveEventPatches);
97  KVDataPatch* patch;
98  while ((patch = (KVDataPatch*)nxt())) patch->ApplyToEvent(event);
99  }
100  if (fParticlePatches) {
101  // Apply particle-level patches
102  TIter nxt(&fActiveParticlePatches);
103  KVDataPatch* patch;
104  KVReconstructedNucleus* particle;
105  while ((particle = event->GetNextParticle())) {
106  while ((patch = (KVDataPatch*)nxt())) patch->ApplyToParticle(particle);
107  nxt.Reset();
108  }
109  }
110 }
111 
112 
113 
116 
117 void KVDataPatchList::Print(Option_t*) const
118 {
119  // Print list of currently active patches
120  if (!fEventPatches && !fParticlePatches) {
121  Info("Print", "No currently active data patches");
122  return;
123  }
124  if (fEventPatches) {
125  Info("Print", "Currently active event-level patches:");
126  fActiveEventPatches.Print();
127  }
128  if (fParticlePatches) {
129  Info("Print", "Currently active particle-level patches:");
130  fActiveParticlePatches.Print();
131  }
132 }
133 
134 
static const Char_t * GetListOfPlugins(const Char_t *base)
Definition: KVBase.cpp:1260
static const Char_t * GetPluginURI(const Char_t *base, const Char_t *plugin)
Definition: KVBase.cpp:1177
static TPluginHandler * LoadPlugin(const Char_t *base, const Char_t *uri="0")
Definition: KVBase.cpp:793
List of corrections to be applied to reconstructed calibrated data.
Bool_t fEventPatches
=kTRUE if there are event-level patches
void Print(Option_t *="") const
Print list of currently active patches.
Bool_t fParticlePatches
=kTRUE if there are particle-level patches
static KVUniqueNameList * fPatchList
list of all defined patches
void InitializePatchList(TString dataset, TString datatype, Int_t runnumber, TString dataseries, Int_t datareleasenumber, const TList *streamerinfolist)
Fill lists of active patches for given data.
void FillPatchList()
Fill static list of patches from KVDataPatch plugin list.
KVUniqueNameList fActiveParticlePatches
list of currently active particle-level patches
KVUniqueNameList fActiveEventPatches
list of currently active event-level patches
void Apply(KVReconstructedEvent *)
Apply all currently active patches to event.
Correction to be applied to reconstructed calibrated data.
Definition: KVDataPatch.h:55
virtual void ApplyToParticle(KVReconstructedNucleus *)=0
virtual void ApplyToEvent(KVReconstructedEvent *)=0
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 .
virtual void Clear(Option_t *option="")
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Definition: KVString.h:73
void Begin(TString delim) const
Definition: KVString.cpp:565
Bool_t End() const
Definition: KVString.cpp:634
KVString Next(Bool_t strip_whitespace=kFALSE) const
Definition: KVString.cpp:695
Particle * GetNextParticle(Option_t *opt="") const
Optimised list in which named objects can only be placed once.
virtual void Add(TObject *obj)