]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSSDigitizer.h
NEG coating added to Be section.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSSDigitizer.h
CommitLineData
990119d6 1#ifndef ALIPHOSSDigitizer_H
2#define ALIPHOSSDigitizer_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
88cb7938 6
990119d6 7/* $Id$ */
8
702ab87e 9/* History of cvs commits:
10 *
11 * $Log$
ddd1a39c 12 * Revision 1.26 2006/08/28 10:01:56 kharlov
13 * Effective C++ warnings fixed (Timur Pocheptsov)
14 *
3663622c 15 * Revision 1.25 2005/11/30 18:56:26 schutz
16 * Small corrections to fix compilation errors
17 *
0a81ea53 18 * Revision 1.24 2005/05/28 14:19:05 schutz
19 * Compilation warnings fixed by T.P.
20 *
702ab87e 21 */
22
990119d6 23//_________________________________________________________________________
24// Task Class for making SDigits in PHOS
baef0810 25// A Summable Digits is the sum of all hits originating
26// from one primary in one active cell
27//*--
990119d6 28//*-- Author: Dmitri Peressounko(SUBATECH & KI)
29
30
31// --- ROOT system ---
32#include "TTask.h"
0a81ea53 33#include "AliConfig.h"
bdc147a9 34class TFile ;
3e357865 35
0a81ea53 36
990119d6 37// --- Standard library ---
38
39// --- AliRoot header files ---
ddd1a39c 40class AliPHOSQualAssDataMaker ;
990119d6 41
42class AliPHOSSDigitizer: public TTask {
43
44public:
45 AliPHOSSDigitizer() ; // ctor
e191bb57 46 AliPHOSSDigitizer(const char * alirunFileName, const char * eventFolderName = AliConfig::GetDefaultEventFolderName()) ;
ddd1a39c 47 AliPHOSSDigitizer(const AliPHOSSDigitizer& sd) ;
48 AliPHOSSDigitizer& operator = (const AliPHOSSDigitizer& sd) ;
3663622c 49
797e311f 50 virtual ~AliPHOSSDigitizer(); // dtor
990119d6 51
88cb7938 52 Float_t Calibrate(Int_t amp)const {return (amp - fA)/fB ; }
53 Int_t Digitize(Float_t Energy)const { return (Int_t ) ( fA + Energy*fB); }
fbf811ec 54 virtual void Exec(Option_t *option);
17323043 55 Int_t GetSDigitsInRun() const {return fSDigitsInRun ;}
702ab87e 56 virtual void Print(const Option_t * = "") const ;
88cb7938 57 void SetEventFolderName(TString name) { fEventFolderName = name ; }
212d1c0f 58 void SetEventRange(Int_t first=0, Int_t last=-1) {fFirstEvent=first; fLastEvent=last; }
88cb7938 59
106fc2fa 60 Bool_t operator == (const AliPHOSSDigitizer & sd) const ;
ddd1a39c 61
62
7acf6008 63private:
ddd1a39c 64 AliPHOSQualAssDataMaker * GetQualAssDataMaker() const { return fQADM ; }
65
7acf6008 66 void Init() ;
8d0f3f77 67 void InitParameters() ;
7acf6008 68 void PrintSDigits(Option_t * option) ;
88cb7938 69 void Unload() const ;
70
990119d6 71
72private:
7b7c1533 73 Float_t fA ; // Pedestal parameter
74 Float_t fB ; // Slope Digitizition parameters
990119d6 75 Float_t fPrimThreshold ; // To store primari if Elos > threshold
fbf811ec 76 Bool_t fDefaultInit; //! Says if the task was created by defaut ctor (only parameters are initialized)
88cb7938 77 TString fEventFolderName; // event folder name
78 Bool_t fInit ; //! tells if initialisation wennt OK, will revent exec if not
fbf811ec 79 Int_t fSDigitsInRun ; //! Total number of sdigits in one run
212d1c0f 80 Int_t fFirstEvent; // first event to process
81 Int_t fLastEvent; // last event to process
ddd1a39c 82 AliPHOSQualAssDataMaker * fQADM ; //!Quality Assurance Data Maker
990119d6 83
212d1c0f 84 ClassDef(AliPHOSSDigitizer,3) // description
990119d6 85
86};
87
88#endif // AliPHOSSDigitizer_H