]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDetectorRecoParam.h
changed the names of the histograms, requested by AMORE
[u/mrichter/AliRoot.git] / STEER / AliDetectorRecoParam.h
index c308d5fd0798cc17644b994c753e67807fd67d32..b97726fe8fd6ce621c171466c1deb8ae50a2d88f 100644 (file)
 
 #include "TNamed.h"
 
+#include "AliRecoParam.h"
+
 class AliDetectorRecoParam : public TNamed
 {
   
  public: 
   AliDetectorRecoParam();
   virtual ~AliDetectorRecoParam();
-  void  Print(Option_t *option) const {Dump();}
-  const Int_t * GetEventType() { return fEventType;}
-protected:
-  Int_t fEventType[5]; // Reconstruction - event type        
+  void  Print(Option_t */*option*/) const {Dump();}
+
+  Int_t          GetEventSpecie() const { return fEventSpecie; }
+  void           SetEventSpecie(AliRecoParam::EventSpecie_t specie) { fEventSpecie = specie; }
+  void           SetAsDefault() { fEventSpecie |= AliRecoParam::kDefault; }
+  Bool_t         IsDefault() const { return (fEventSpecie & AliRecoParam::kDefault); }
+
+private:
+
+  Int_t fEventSpecie; // Event specie for which the reco-param object is valid
   
-  ClassDef(AliDetectorRecoParam, 1)
+  ClassDef(AliDetectorRecoParam, 3)
 };