#ifndef ALIITSSDIGITIZATION_H #define ALIITSSDIGITIATION_H /* Copyright (c) 1998-2001, ALICE Experiment at CERN, All rights reserved * * See cxx source for full Copyright notice */ /* $Id$ */ #include class TString; class AliITS; class AliITSsDigitize : public TTask{ public: AliITSsDigitize(); // default constructor AliITSsDigitize(const char *filename); // standard constructor virtual ~AliITSsDigitize();//Destructor virtual Bool_t Init(); virtual void Exec(const Option_t *opt="ALL"); private: Bool_t InitSDig(); // Standard SDigitization initilization. private: TFile *fFile; //! pointer to the file contatining the hits and // and will contain the SDigits Bool_t fDet[3]; //! logical specifing which detectors to reconstruct. Bool_t fInit; //! True if Init was sucessfull, else false. TString fFilename; //! input filename for Hits Int_t fEnt; //! Number of events to processevent index. Int_t fEnt0; //! first event to process, default 0. AliITS *fITS; //! Local pointer to ITS class. ClassDef(AliITSsDigitize,1) // Task to SDigitize ITS from Hits. }; #endif