]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSQASSDChecker.h
Fixes for bug #49914: Compilation breaks in trunk, and bug #48629: Trunk cannot read...
[u/mrichter/AliRoot.git] / ITS / AliITSQASSDChecker.h
index 9a26634e7ca0d77b3126b68f342027700d2fd201..3bd80b3943cadf345965ed21c5e474dcac2dc03e 100644 (file)
@@ -19,6 +19,7 @@ class TFile ;
 class TH2F ;  
 
 // --- AliRoot header files ---
+#include "AliQAv1.h"
 #include "AliQACheckerBase.h"
 #include "AliITSQAChecker.h"
 class AliITSLoader ; 
@@ -26,14 +27,17 @@ class AliITSLoader ;
 class AliITSQASSDChecker: public TObject {
 
 public:
-  AliITSQASSDChecker() {;}          // ctor
+  AliITSQASSDChecker():fSubDetOffset(0) {;}          // ctor
   AliITSQASSDChecker& operator = (const AliITSQASSDChecker& qac) ; //operator =
   virtual ~AliITSQASSDChecker() {;} // dtor
-  const Double_t Check();
+  Double_t Check(AliQAv1::ALITASK_t /*index*/, TObjArray * /*list*/);
+  void SetTaskOffset(Int_t TaskOffset);
+
 
 private:
   
-  AliITSQASSDChecker(const AliITSQASSDChecker& qac){;} // cpy ctor   
+  AliITSQASSDChecker(const AliITSQASSDChecker& /*qac*/):TObject(),fSubDetOffset(0) {;} // cpy ctor   
+  Int_t fSubDetOffset;            // checking operation starting point
   ClassDef(AliITSQASSDChecker,1)  // description 
 
 };