]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PHOS/AliPHOSRecEmcManager.h
Write header correctly.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecEmcManager.h
... / ...
CommitLineData
1#ifndef AliPHOSRecEmcManager_H
2#define AliPHOSRecEmcManager_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//_________________________________________________________________________
7// Class for the management by the Emc reconstruction.
8// Author : Boris Polichtchouk (IHEP, Protvino)
9// 6 March 2001
10
11#include "AliPHOSRecManager.h"
12#include "AliPHOSGeometry.h"
13
14class AliPHOSRecEmcManager : public AliPHOSRecManager {
15
16 public:
17
18 AliPHOSRecEmcManager();
19 ~AliPHOSRecEmcManager(void);
20
21
22 void AG(Float_t e, Float_t dx, Float_t dy, Float_t& a, Float_t& gradx, Float_t& grady );
23 Float_t Dispersion(Float_t eTot, Float_t ai, Float_t ei) const;
24
25 Float_t OneGamChi2(Float_t ai, Float_t ei, Float_t eTot, Float_t& gi)const;
26 Float_t TwoGamChi2(Float_t ai, Float_t ei, Float_t eTot, Float_t& gi)const;
27
28 Float_t OneGamChisqCut() const{ return fOneGamChisqCut; }
29 Float_t OneGamInitialStep() const{ return fOneGamInitialStep; }
30 Float_t OneGamChisqMin() const{ return fOneGamChisqMin; }
31 Float_t OneGamStepMin() const{ return fOneGamStepMin; }
32 Int_t OneGamNumOfIterations() const{ return fOneGamNumOfIterations; }
33
34 Float_t TwoGamInitialStep() const{ return fTwoGamInitialStep; }
35 Float_t TwoGamChisqMin() const{ return fTwoGamChisqMin; }
36 Float_t TwoGamEmin() const{ return fTwoGamEmin; }
37 Float_t TwoGamStepMin() const{ return fTwoGamStepMin; }
38 Int_t TwoGamNumOfIterations() const{ return fTwoGamNumOfIterations; }
39
40 Float_t KillGamMinEnergy() const{ return fThr0; }
41 Float_t MergeGammasMinDistanceCut() const{ return fSqdCut; }
42
43 void SetTwoPointsMinDistance(Float_t dist) { fSqdCut=dist; }
44 void SetPointMinEnergy(Float_t emin) { fThr0=emin; }
45
46 private:
47
48 Float_t fOneGamChisqCut; // what is it ?
49
50 Float_t fOneGamInitialStep; // what is it ?
51 Float_t fOneGamChisqMin; // what is it ?
52 Float_t fOneGamStepMin; // what is it ?
53 Int_t fOneGamNumOfIterations; // what is it ?
54
55 Float_t fTwoGamInitialStep; // what is it ?
56 Float_t fTwoGamChisqMin; // what is it ?
57 Float_t fTwoGamEmin; // what is it ?
58 Float_t fTwoGamStepMin; // what is it ?
59 Int_t fTwoGamNumOfIterations; // what is it ?
60
61 Float_t fThr0; // what is it ?
62 Float_t fSqdCut; // what is it ?
63
64 ClassDef(AliPHOSRecEmcManager,1) // Emc reconstruction management class
65
66} ;
67
68#endif // AliPHOSRecEmcManager_H
69
70
71