]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDetectorTag.h
Fixes for bug #52499: Field polarities inconsistiency
[u/mrichter/AliRoot.git] / STEER / AliDetectorTag.h
index 74f5a2988a8b7ab11cc4aa4ad049afdb6b18b5e6..bcd97361a9208930c646ba48054d0b7edb373991 100644 (file)
@@ -28,6 +28,7 @@ class AliDetectorTag : public TObject {
   //____________________________________________________//
   void SetDetectorMask(UInt_t mask) {fMask = mask; Int2Bin();}
   TObjArray *GetDetectorMask() {return fDetectorArray;}
+  UInt_t GetIntDetectorMask();
   void PrintDetectorMask();
 
   //____________________________________________________//
@@ -70,7 +71,7 @@ class AliDetectorTag : public TObject {
   
   TObjArray *fDetectorArray; //detectors' names - active
   UInt_t     fMask;          //detector mask
-  UInt_t     fDetectors[20]; //detector mask
+  UInt_t     fDetectors[32]; //detector mask
   Bool_t     fITSSPD;        //ITS-SPD active = 1
   Bool_t     fITSSDD;        //ITS-SDD active = 1
   Bool_t     fITSSSD;        //ITS-SSD active = 1
@@ -87,7 +88,7 @@ class AliDetectorTag : public TObject {
   Bool_t     fZDC;           //ZDC active = 1
   Bool_t     fEMCAL;         //EMCAL active = 1
 
-  ClassDef(AliDetectorTag,3)  //(ClassName, ClassVersion)
+  ClassDef(AliDetectorTag,4)  //(ClassName, ClassVersion)
 };
 //______________________________________________________________________________