AliRoot Core  3dc7879 (3dc7879)
AliCaloPeakFinderVectors.h
Go to the documentation of this file.
1 // -*- mode: c++ -*-
2 #ifndef ALICALOPEAKFINDERVECTORS_H
3 #define ALICALOPEAKFINDERVECTORS_H
4 
5 /* Copyright(c) 1998-2010, ALICE Experiment at CERN, All rights reserved. *
6  * See cxx source for full Copyright notice */
7 
8 //_________________________________________________________________________
16 //_________________________________________________________________________
17 
18 #include "TObject.h"
19 
20 #include "AliCaloConstants.h"
21 
22 class AliCaloPeakFinderVector;
23 
24 class AliCaloPeakFinderVectors : public TObject
25 {
26 
27 public:
28 
30 
31  virtual ~AliCaloPeakFinderVectors();
32 
33  void SetVector(const int i, const int j,
34  const Double_t *const a, const Double_t *const t,
35  const Double_t *const ac, const Double_t *const tc );
36 
37  void GetVector(const int i, const int j,
38  Double_t *const a, Double_t *const t,
39  Double_t *const ac, Double_t *const tc ) const;
40 
41  void PrintVectors() const;
42 
43  void ResetVectors();
44 
45  private:
46 
51 
53  ClassDef( AliCaloPeakFinderVectors, 2 ) ;
55 
56 };
57 
58 #endif //ALICALOPEAKFINDERVECTORS_H
59 
#define SAMPLERANGE
Definition: pfocdbmaker.C:23
#define MAXSTART
Definition: pfocdbmaker.C:22
virtual ~AliCaloPeakFinderVectors()
Destructor.
void ResetVectors()
Reset vectors.
void PrintVectors() const
Dump vectors information.
Double_t fPFAmpVC[PF::MAXSTART][PF::SAMPLERANGE][100]
Vectors for Amplitude extraction, first iteration.
Double_t fPFTofV[PF::MAXSTART][PF::SAMPLERANGE][100]
Vectors for TOF extraction, second iteration.
Double_t fPFTofVC[PF::MAXSTART][PF::SAMPLERANGE][100]
Vectors for TOF extraction, first iteration.
void SetVector(const int i, const int j, const Double_t *const a, const Double_t *const t, const Double_t *const ac, const Double_t *const tc)
Set vectors.
Container class for Peak Finder vectors.
Double_t fPFAmpV[PF::MAXSTART][PF::SAMPLERANGE][100]
Vectors for Amplitude extraction, second iteration.
void GetVector(const int i, const int j, Double_t *const a, Double_t *const t, Double_t *const ac, Double_t *const tc) const
Get vectors.