]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALRawUtils.h
Add the configuration for AD0
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRawUtils.h
CommitLineData
168c7b3c 1// -*- mode: c++ -*-
ee299369 2#ifndef ALIEMCALRAWUTILS_H
3#define ALIEMCALRAWUTILS_H
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
e5bbbc4e 8
92d9f317 9
ee299369 10//_________________________________________________________________________
11// Utility Class for handling Raw data
12// Does all transitions from Digits to Raw and vice versa,
13// for simu and reconstruction
14//
15// Note: the current version is still simplified. Only
16// one raw signal per digit is generated; either high-gain or low-gain
17// Need to add concurrent high and low-gain info in the future
18// No pedestal is added to the raw signal.
19//
20//*-- Author: Marco van Leeuwen (LBL)
21//
22#include "TObject.h" // for ROOT types
feedcab9 23#include <TString.h>
168c7b3c 24
25
92d9f317 26class AliAnalysisManager;
32cd4c24 27class AliCaloRawStreamV3;
e5bbbc4e 28class AliAltroMapping;
ee299369 29class TGraph;
ee299369 30class AliRawReader;
65bdc82f 31class AliEMCALGeometry;
5e3106bc 32class AliCaloCalibPedestal;
16605c06 33class AliCaloRawAnalyzer;
de39a0ff 34class AliEMCALTriggerRawDigitMaker;
35class AliEMCALTriggerData;
92d9f317 36
168c7b3c 37#include "AliCaloConstants.h"
ee299369 38
39class AliEMCALRawUtils : public TObject {
161ee20b 40
41public:
42
168c7b3c 43 AliEMCALRawUtils(Algo::fitAlgorithm fitAlgo = Algo::kStandard);
161ee20b 44
16605c06 45 virtual ~AliEMCALRawUtils();
161ee20b 46
65bdc82f 47 void Digits2Raw();
161ee20b 48
916f1e76 49 void Raw2Digits(AliRawReader *reader, TClonesArray *digitsArr, const AliCaloCalibPedestal* pedbadmap,
de39a0ff 50 TClonesArray *digitsTRG=0x0, AliEMCALTriggerData* trgData = 0x0);
161ee20b 51
2cd0ffda 52 void AddDigit(TClonesArray *digitsArr, Int_t id, Int_t lowGain, Float_t amp, Float_t time, Float_t chi2, Int_t ndf);
161ee20b 53
f4a4dc82 54 void TrimDigits(TClonesArray *digitsArr);
161ee20b 55
829ba234 56 Int_t GetNoiseThreshold() const { return fNoiseThreshold; }
57 Int_t GetNPedSamples() const { return fNPedSamples; }
829ba234 58 Bool_t GetRemoveBadChannels() const {return fRemoveBadChannels;}
59 Int_t GetFittingAlgorithm() const {return fFittingAlgorithm; }
f4a4dc82 60 Float_t GetTimeMax() const {return fTimeMax ;}
61 Float_t GetTimeMin() const {return fTimeMin ;}
829ba234 62 Bool_t UseFALTRO() const {return fUseFALTRO; }
161ee20b 63
64 void SetNoiseThreshold(Int_t val) {fNoiseThreshold=val; }
65 void SetNPedSamples(Int_t val) {fNPedSamples=val; }
66 void SetRemoveBadChannels(Bool_t val) {fRemoveBadChannels=val; }
67 void SetFittingAlgorithm(Int_t val) ;
68 void SetTimeMin(Float_t t) {fTimeMin = t ;}
69 void SetTimeMax(Float_t t) {fTimeMax = t ;}
70 void SetFALTROUsage(Bool_t val) {fUseFALTRO=val; }
71
829ba234 72 AliCaloRawAnalyzer *GetRawAnalyzer() const { return fRawAnalyzer;}
161ee20b 73
feedcab9 74 virtual Option_t* GetOption() const { return fOption.Data(); }
16605c06 75 void SetOption(const Option_t* opt) { fOption = opt; }
92d9f317 76
77private:
161ee20b 78 AliEMCALRawUtils (const AliEMCALRawUtils& rawUtils); //copy ctor
92d9f317 79 AliEMCALRawUtils& operator =(const AliEMCALRawUtils& rawUtils);
161ee20b 80
b4133f05 81 Int_t fNoiseThreshold; // threshold to consider signal or noise
82 Int_t fNPedSamples; // number of samples to use in pedestal calculation
f4a4dc82 83 AliEMCALGeometry* fGeom; // geometry
84 AliAltroMapping* fMapping[4]; // only two for now
92d9f317 85 TString fOption; // option passed from Reconstructor
f4a4dc82 86 Bool_t fRemoveBadChannels; // select if bad channels are removed before fitting
87 Int_t fFittingAlgorithm; // select the fitting algorithm
88 Float_t fTimeMin; // minimum threshold for the time of the signal
89 Float_t fTimeMax; // maximum threshold for the time of the signal
90 Bool_t fUseFALTRO; // use FALTRO and pass it to the digits
16605c06 91 AliCaloRawAnalyzer *fRawAnalyzer; // e.g. for sample selection for fits
dab4328c 92 AliEMCALTriggerRawDigitMaker* fTriggerRawDigitMaker; // trigger raw digit info
92d9f317 93
f4a4dc82 94 ClassDef(AliEMCALRawUtils,7) // utilities for raw signal fitting
92d9f317 95
ee299369 96};
97
98#endif