source: trunk/MagicSoft/Simulation/Detector/include-MFadc/MFadc.hxx@ 4308

Last change on this file since 4308 was 2986, checked in by blanch, 21 years ago
Header file for MFadc.cxx vrsion 1.17
File size: 4.6 KB
Line 
1#ifndef __MFadc__
2#define __MFadc__
3//
4// class MFadc
5//
6// implemented by Harald Kornmayer
7//
8// This is a class to simulate the FADC.
9// It assumes a special response of the PMT for one single Photo-electron.
10//
11//
12//
13#include <stream.h>
14#include <math.h>
15
16#include "TObject.h"
17#include "TRandom.h"
18
19#include "Mdefine.h"
20
21#include "MTriggerDefine.h"
22#include "MFadcDefine.h"
23
24class MMcEvt ;
25
26//==========
27// MFadc
28//
29// The simulation of the Flash ADC system for the MAGIC teleskop is done with
30// this class.
31// So all methods concerning the FADC System should be done inside this
32// class.
33//
34// The Idea is to (in)put the data of the photo electrons into the class and
35// generate the response (output) of the FADC to that input. Response means
36// in this sense the ADC values of the different time slices for all pixels
37//
38// The pixelisation is done by the camera program of Jose Carlos.
39//
40// This class is closly connected to the MTrigger classs. So some of the
41// values defined in MTriggerDefine.h are also used by this class.
42//
43// But a lot of other stuff is defined in MFadcDefine.h.
44//
45//
46
47
48class MFadc {
49 private:
50 Int_t numpix;
51 //
52 // then for all pixels the shape of all the analog signals
53 //
54 Bool_t used[CAMERA_PIXELS] ; // a boolean to indicated if the pixels is used in this event
55 Float_t pedestal[CAMERA_PIXELS] ; // Pedestal of FADCs
56
57 Float_t sig[CAMERA_PIXELS][(Int_t) SLICES_MFADC] ; // the analog signal for pixels
58 Float_t noise[((Int_t) SLICES_MFADC)*1001];
59 Int_t digital_noise[((Int_t) SLICES_MFADC)*1001];
60
61 UChar_t output[CAMERA_PIXELS][FADC_SLICES]; // the analog signal for pixels that is read after a trigger occurs (high gain).
62
63 UChar_t output_lowgain[CAMERA_PIXELS][FADC_SLICES]; // analog signal, low gain.
64 Float_t high2low_gain;
65 //
66 // first the data for the response function
67 //
68 Float_t fwhm_resp ; // fwhm of the phe_response function (in ns)
69 Float_t integ_resp ; // area below curve of the phe_response function (in counts * ns)
70 Float_t sing_resp[ RESPONSE_SLICES_MFADC ] ; // the shape of the phe_response function
71
72 //
73 // We may end up with a different reponse for the outer pixels
74 //
75 Float_t fwhm_resp_outer ; // fwhm of the phe_response function (in ns)
76 Float_t integ_resp_outer ; // area below curve of the phe_response function (in counts * ns)
77 Float_t sing_resp_outer[ RESPONSE_SLICES_MFADC ] ; // the shape of the phe_response function
78 //
79 // RandomGenerator for the Electonic Noise
80 //
81
82 TRandom *GenElec ;
83
84 Float_t fadc_time_offset; // Time offset to adjust the delay between trigger
85 // and the peak position in the FADC of the signal
86 // in the trigger pixels.
87
88
89public:
90
91 MFadc(Int_t pix=577,
92 Float_t ampl=MFADC_RESPONSE_INTEGRAL,
93 Float_t fwhm=MFADC_RESPONSE_FWHM,
94 Float_t amplout=MFADC_RESPONSE_INTEGRAL,
95 Float_t fwhmout=MFADC_RESPONSE_FWHM,
96 Float_t trig_delay=0.) ;
97
98 void SetSeed(UInt_t seed) {GenElec->SetSeed(seed);}
99
100 void Reset() ;
101
102 void Fill( Int_t, Float_t, Float_t, Int_t ) ;
103
104 void Fill( Int_t, Float_t, Float_t ) ;
105
106 void FillOuter( Int_t, Float_t, Float_t ) ;
107
108 void Set( Int_t iPix, Float_t res[(Int_t) SLICES_MFADC]);
109
110 void AddSignal( Int_t iPix, Float_t res[(Int_t) SLICES_MFADC]);
111
112 void SetPedestals( Int_t ped);
113
114 void SetPedestals( Float_t *ped);
115
116 void SetFwhm( Float_t fwhm){
117 fwhm_resp=fwhm;
118 }
119
120 void SetInteg( Float_t x){
121 integ_resp=x;
122 }
123
124 void SetFwhmOuter( Float_t fwhm){
125 fwhm_resp_outer=fwhm;
126 }
127
128 void SetIntegOuter( Float_t x){
129 integ_resp_outer=x;
130 }
131
132 void Baseline();
133
134 void Pedestals();
135
136 void Offset( Float_t, Int_t );
137
138 void SetElecNoise(Float_t value=2.0);
139
140 void ElecNoise(Float_t value=2.0) ;
141
142 void SetDigitalNoise(Float_t value=2.0);
143
144 void DigitalNoise() ;
145
146 void Scan() ;
147
148 void Scan(Float_t time) ;
149
150 void GetResponse( Float_t *resp ) ;
151
152 void GetPedestals( Float_t *offset);
153
154 Float_t GetPedestalNoise (Int_t pix, Int_t ishigh);
155
156 void TriggeredFadc(Float_t time);
157
158 void ShowSignal ( MMcEvt *McEvt , Float_t ) ;
159
160 UChar_t GetFadcSignal(Int_t pixel, Int_t slice);
161
162 UChar_t GetFadcLowGainSignal(Int_t pixel, Int_t slice);
163
164 void SetHigh2LowGain(Float_t h2l) {high2low_gain=h2l;}
165
166 Float_t GetIntegral() {
167 return integ_resp ;
168 }
169
170 Float_t GetFwhm() {
171 return fwhm_resp ;
172 }
173
174 Float_t GetIntegralOuter() {
175 return integ_resp_outer ;
176 }
177
178 Float_t GetFwhmOuter() {
179 return fwhm_resp_outer ;
180 }
181
182 Bool_t IsPixelUsed(UInt_t p){
183 return used[p];
184 }
185
186} ;
187
188
189#endif
Note: See TracBrowser for help on using the repository browser.