3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
7 //_________________________________________________________________________
8 // Task Class for Probabilities in TOF
10 //-- Author: F. Pierella
22 class AliTOFProb: public TTask {
25 AliTOFProb() ; // ctor
26 AliTOFProb(char* headerFile) ;
27 virtual ~AliTOFProb() ; // dtor
28 virtual void Exec(const Option_t *dummyOpt); // do the main work
31 TNtuple* GetInputNtuple() const {return fNtuple;}
33 Bool_t operator == (const AliTOFProb & tofprob) const ;
37 TNtuple *fNtuple; // pointer to ntuple
40 char* foutfileName; // destination file name for histos
45 ClassDef(AliTOFProb,0) // Task class for PID probabilities from TOF
49 #endif // AliTOFPROB_H