]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONCheck.h
In AliMUONTrackReconstructorK:
[u/mrichter/AliRoot.git] / MUON / AliMUONCheck.h
CommitLineData
70b4a8d6 1#ifndef ALIMUONCHECK_H
2#define ALIMUONCHECK_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
9780bd43 5 * See cxx source for full Copyright notice */
70b4a8d6 6
7// $Id$
8
b9163228 9/// \ingroup evaluation
70b4a8d6 10/// \class AliMUONCheck
9780bd43 11/// \brief Class for data quality control
70b4a8d6 12///
9780bd43 13// Author Frederic Yermia, INFN Torino
70b4a8d6 14
15#ifndef ROOT_TObject
16# include "TObject.h"
17#endif
18#ifndef ROOT_TString
19# include "TString.h"
20#endif
21
af885e0f 22class AliESDEvent;
9780bd43 23class TTree;
24class TH1F ;
70b4a8d6 25
26class AliMUONCheck : public TObject
27{
28public:
9780bd43 29 AliMUONCheck(const char* galiceFile, const char* esdFile,
30 Int_t firstEvent=0, Int_t lastEvent=-1, const char* outDir="");
5a560b6a 31 AliMUONCheck(const char* galiceFile, const char* galiceFileSim, const char* esdFile,
32 Int_t firstEvent=0, Int_t lastEvent=-1, const char* outDir="");
70b4a8d6 33 virtual ~AliMUONCheck();
9780bd43 34
9780bd43 35 void CheckESD(Bool_t pdc06TriggerResponse= false);
36 void CheckKine();
37 void CheckTrackRef();
38 void CheckOccupancy(Bool_t perDetEle =kFALSE) const;
70b4a8d6 39
9780bd43 40 void SetEventsToCheck(Int_t firstEvent, Int_t lastEvent);
41
70b4a8d6 42private:
c4ee792d 43 /// Not implemented
70b4a8d6 44 AliMUONCheck(const AliMUONCheck& rhs);
71a2d3aa 45 /// Not implemented
70b4a8d6 46 AliMUONCheck& operator=(const AliMUONCheck& rhs);
47
48private:
5a560b6a 49 TString fFileName; //!< File (galice.root) to read from fro reconstructed data
50 TString fFileNameSim; //!< File (galiceSim.root) for simulated data
9780bd43 51 TString fesdFileName; //!< File (AliESDs.root) to read from
52
7d5d0cc5 53 const char* fkOutDir; //!< output data directory
9780bd43 54
55 Int_t fFirstEvent; //!< First event to consider
56 Int_t fLastEvent; //!< Last event to consider
57
70b4a8d6 58 ClassDef(AliMUONCheck,0) // Dumper of MUON related data
9780bd43 59};
70b4a8d6 60
61#endif