]> 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 f2c1c0f7c71785bfae454352fd65bccffdb67fab..066c52f19d54ba2ea76a595e0a96fca0f273d570 100644 (file)
 #  include "TString.h"
 #endif
 
-class AliMUONData;
-class AliRunLoader;
-class AliLoader;
-class AliESD;
+class AliESDEvent;
 class TTree;
 class TH1F ;
 
@@ -31,16 +28,14 @@ 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);
 
@@ -51,22 +46,15 @@ private:
   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
 };