KaliVeda  1.12/06
Heavy-Ion Analysis Toolkit
KVDummyGV.h
Go to the documentation of this file.
1 #ifndef __KVDUMMYGV_H
2 #define __KVDUMMYGV_H
3 
4 #include "KVVarGlob.h"
5 
22 class KVDummyGV : public KVVarGlob {
23  virtual Double_t getvalue_int(Int_t) const
24  {
25  return 0;
26  };
27 
28 public:
30  {
32  }
33  KVDummyGV(const Char_t* nom) : KVVarGlob(nom)
34  {
36  }
37 
40  {
41  return kFALSE;
42  }
43 
44  void Init() {}
45  void Reset() {}
46  void Calculate() {}
47 
48  ClassDef(KVDummyGV, 1) //Dummy global variable for event selection
49 };
50 
51 #endif
int Int_t
char Char_t
const Bool_t kFALSE
bool Bool_t
double Double_t
#define ClassDef(name, id)
Dummy global variable for event selection.
Definition: KVDummyGV.h:22
virtual Double_t getvalue_int(Int_t) const
Definition: KVDummyGV.h:23
void Init()
Definition: KVDummyGV.h:44
Bool_t IsGlobalVariable() const
Definition: KVDummyGV.h:39
KVDummyGV()
Definition: KVDummyGV.h:29
void Calculate()
Definition: KVDummyGV.h:46
void Reset()
Definition: KVDummyGV.h:45
KVDummyGV(const Char_t *nom)
Definition: KVDummyGV.h:33
Base class for all global variable implementations.
Definition: KVVarGlob.h:217
void SetMaxNumBranches(Int_t n)
Definition: KVVarGlob.h:640