X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ITS%2FAliITSetfSDD.h;h=7b814cdad1a3f22d6833301e8e4ea90a8d9ec044;hb=7e33c4e630e6568cba6ee4169a5a3f5e43e9741a;hp=1aad9353bcc685353a42133c2f25ab324075db2e;hpb=48058160c3a149752a66c0014cd03d2e7e64973f;p=u%2Fmrichter%2FAliRoot.git diff --git a/ITS/AliITSetfSDD.h b/ITS/AliITSetfSDD.h index 1aad9353bcc..7b814cdad1a 100644 --- a/ITS/AliITSetfSDD.h +++ b/ITS/AliITSetfSDD.h @@ -1,58 +1,69 @@ -#ifndef ITSETFSDD_H -#define ITSETFSDD_H +#ifndef ALIITSETFSDD_H +#define ALIITSETFSDD_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ -/* -$Log$ -*/ + +/* $Id$ */ +//////////////////////////////////////////////////////////////////////// +// Version: 0 // +// Written by Piergiorgio Cerello // +// November 24 1999 // +// // +// AliITSetfSDD is the class describing // +// the electronics for the ITS SDDs. // +//////////////////////////////////////////////////////////////////////// + #include -static const Int_t kMaxNofPoles = 5; -static const Int_t kMaxNofSamples = 1024; class TString; class AliITSetfSDD : public TObject { -//////////////////////////////////////////////////////////////////////// -// Version: 0 -// Written by Piergiorgio Cerello -// November 24 1999 -// -// AliITSetfSDD is the class describing the electronics for the ITS SDDs. -// -//////////////////////////////////////////////////////////////////////// public: - AliITSetfSDD() {}; // default constructor - AliITSetfSDD(Double_t timestep, Int_t amplif); - ~AliITSetfSDD() {;} - Double_t GetWeightReal(Int_t n) { return fWR[n]; } - Double_t GetWeightImag(Int_t n) { return fWI[n]; } - Double_t GetTraFunReal(Int_t n) { return fTfR[n]; } - Double_t GetTraFunImag(Int_t n) { return fTfI[n]; } - Int_t GetSamples() { return kMaxNofSamples; } - Float_t GetTimeDelay() { return fTimeDelay; } - void PrintElectronics(); // Print Electronics parameters - + AliITSetfSDD(); // default constructor + AliITSetfSDD(Double_t timestep, Int_t amplif); + virtual ~AliITSetfSDD(); + Double_t GetWeightReal(Int_t n) const { return fWR[n]; } + Double_t GetWeightImag(Int_t n) const { return fWI[n]; } + Double_t GetTraFunReal(Int_t n) const { return fTfR[n]; } + Double_t GetTraFunImag(Int_t n) const { return fTfI[n]; } + Float_t GetTimeDelay() const { return fTimeDelay; } + void PrintElectronics() const; // Print Electronics parameters + class AliITSetfSDDparam { + public : + static Int_t NumberOfPoles() {return fgkMaxNofPoles;} + static Int_t NumberOfSamples(){return fgkMaxNofSamples;} + private: + static const Int_t fgkMaxNofPoles; // Set to 5 in impl. file + static const Int_t fgkMaxNofSamples; // Set to 1024 in impl. file + }; + static Int_t GetSamples() { return AliITSetfSDDparam::NumberOfSamples(); } protected: + // copy constructor (NO copy allowed: the constructor is protected + // to avoid misuse) + AliITSetfSDD(const AliITSetfSDD& obj); + // assignment operator (NO assignment allowed) + AliITSetfSDD& operator=(const AliITSetfSDD& /* obj */); + Float_t fTimeDelay; // Time delay caused by the amplifier shaping - Double_t fSamplingTime; // - Double_t fT0; // - Double_t fDf; // - Double_t fA0; // - Double_t fZeroM[kMaxNofPoles]; // - Double_t fZeroR[kMaxNofPoles]; // - Double_t fZeroI[kMaxNofPoles]; // - Double_t fPoleM[kMaxNofPoles]; // - Double_t fPoleR[kMaxNofPoles]; // - Double_t fPoleI[kMaxNofPoles]; // - Double_t fTfR[kMaxNofSamples]; // Transfer function (real part) - Double_t fTfI[kMaxNofSamples]; // Transfer function (imaginary part) - Double_t fWR[kMaxNofSamples]; // Fourier Weights (real part) - Double_t fWI[kMaxNofSamples]; // Fourier Weights (imaginary part) + Double_t fSamplingTime; // time step in ns + Double_t fT0; // T0 + Double_t fDf; // Frequency + Double_t fA0; // A0 + Double_t *fZeroM; // ZeroM + Double_t *fZeroR; // ZeroR + Double_t *fZeroI; // ZeroI + Double_t *fPoleM; // PoleM + Double_t *fPoleR; // PoleR + Double_t *fPoleI; // PoleI + Double_t *fTfR; // Transfer function (real part) + Double_t *fTfI; // Transfer function (imaginary part) + Double_t *fWR; // Fourier Weights (real part) + Double_t *fWI; // Fourier Weights (imaginary part) ClassDef(AliITSetfSDD,1) // Class for SDD electornics };