]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONCheck.h
Write only detector coefficients from HLT (Raphaelle)
[u/mrichter/AliRoot.git] / MUON / AliMUONCheck.h
index de9386582087a51f7a970922ede49cbf69dfeb4c..066c52f19d54ba2ea76a595e0a96fca0f273d570 100644 (file)
@@ -6,7 +6,7 @@
 
 // $Id$
 
-/// \ingroup base
+/// \ingroup evaluation
 /// \class AliMUONCheck
 /// \brief Class for data quality control
 /// 
 #  include "TString.h"
 #endif
 
-class AliMUONData;
-class AliRunLoader;
-class AliLoader;
-class AliESD;
+class AliESDEvent;
 class TTree;
 class TH1F ;
 
@@ -31,40 +28,33 @@ class AliMUONCheck : public TObject
 public:
   AliMUONCheck(const char* galiceFile, const char* esdFile,
                Int_t firstEvent=0, Int_t lastEvent=-1, const char* outDir="");
+  AliMUONCheck(const char* galiceFile, const char* galiceFileSim, const char* esdFile,
+               Int_t firstEvent=0, Int_t lastEvent=-1, const char* outDir="");
   virtual ~AliMUONCheck();
  
-  /// Return true if contains valid data
-  Bool_t IsValid() const { return (fData!=0); }
-  
   void CheckESD(Bool_t pdc06TriggerResponse= false);
   void CheckKine();
   void CheckTrackRef();
   void CheckOccupancy(Bool_t perDetEle =kFALSE) const;  
-  void CheckRecTracks() const;
   
   void SetEventsToCheck(Int_t firstEvent, Int_t lastEvent);
 
 private:
+  /// Not implemented
   AliMUONCheck(const AliMUONCheck& rhs);
+  /// Not implemented
   AliMUONCheck& operator=(const AliMUONCheck& rhs);
   
 private:
-  TString fFileName;   //!< File (galice.root) to read from
+  TString fFileName;   //!< File (galice.root) to read from fro reconstructed data
+  TString fFileNameSim; //!< File (galiceSim.root) for simulated data
   TString fesdFileName; //!< File (AliESDs.root) to read from
  
-  const char* foutDir;  //!< output data directory
+  const char* fkOutDir;  //!< output data directory
   
   Int_t   fFirstEvent;  //!< First event to consider
   Int_t   fLastEvent;   //!< Last event to consider
 
-  AliRunLoader* fRunLoader; //!< AliRunLoader pointer
-  AliLoader*    fLoader; //!< MUON loader pointer
-
-  AliMUONData*  fData;  //!< AliMUONData pointer (to access containers)
-
-  TTree   * fTree ;     //!pointer to the analyzed TTree or TChain
-  AliESD  * fESD ;      //! Declaration of leave types
-
   ClassDef(AliMUONCheck,0) // Dumper of MUON related data
 };