AEvent.cpp 5.11 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * AEvent.cpp
 *
 *  Created on: Dec 28, 2016
 *      Author: daria
 */

#include "AEvent.h"

10
AEvent::AEvent() : fNPoints(1024) {	//fNPoints is number of points in one event, 1024 or 1000
11 12 13 14 15 16

	Init();
	Reset();

}

17 18 19 20 21 22
AEvent::AEvent(const Int_t npoints) : fNPoints(npoints) {

	Init();
	Reset();
}

23 24
AEvent::~AEvent() {
	// TODO Auto-generated destructor stub
25 26
	delete fGraphSignal;
	delete fGraphCFD;
27
	delete fInputEvent;
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
}

void AEvent::SetRawDataFile(const char* inprawfile, const char* treename) {

	TString iFileName = inprawfile;
	TFile *fraw = new TFile(iFileName.Data());
	if ( !fraw->IsOpen() ) {
		Error("SetRawDataFile", "File %s was not opened and won't be processed", iFileName.Data());
	}
	TTree *traw = (TTree*)fraw->Get(treename);
	if (!traw) {
		Error("SetRawDataFile", "Tree %s was not found in file %s", treename, iFileName.Data());
	}
}

void AEvent::ProcessEvent() {

	if (fInputEvent == NULL) {
		Warning("AEvent::ProcessEvent", "Input event wasn't set. Function won't be processed.");
		return;
	}

	const Double_t *amp = fInputEvent->GetAmp();
	const Double_t *time = fInputEvent->GetTime();

53
	for(Int_t j = 0; j < fNPoints; j++) {
54 55 56 57
		fAmpPos[j] = amp[j]*(-1.);
		fTime[j] = time[j];
	}

58
	fZeroLevel = FindZeroLevel();
59
	for(Int_t j = 0; j < fNPoints; j++) {
60
		fAmpPos[j] = fAmpPos[j] - fZeroLevel;
61 62
	}

63 64 65 66
	Double_t maxAmp = 0.;
	Double_t maxAmpT = 0.;

	maxAmp = fAmpPos[0];
67
	for(Int_t j=0; j < fNPoints; j++) {
68 69 70 71 72 73 74 75
		if(fAmpPos[j] > maxAmp) {
			maxAmp = fAmpPos[j];
			maxAmpT = fTime[j];
		}
	}
	fAmpMax = maxAmp;
	fTimeAmpMax = maxAmpT;

76
	SetGraphs();
77
	FindFrontProperties();
78
	SetCFD();
79
	SetChargeCFD();
80

81 82 83 84 85 86
	return;

}

void AEvent::Reset() {

87
	for (Int_t i = 0; i < fNPoints; i++) {
88 89
		fAmpPos[i] = 0;
		fTime[i] = 0;
90
		fAmpCFD[i] = 0;
91 92
	}

93 94 95
	EdgeSlope=0.;
	t_10=0.;
	t_90=0.;
96 97
	fAmpMax = 0.;
	fTimeAmpMax = 0.;
98 99
	fTimeCFD = 0.;
	fZeroLevel = 0.;
100
	fChargeCFD = 0.;
101 102 103 104 105 106 107 108 109 110 111 112 113
}

void AEvent::SetInputEvent(RawEvent** event) {

	if (event == 0) {
		Warning("AEvent::SetInputEvent", "Input event was set as 0.");
	}
	fInputEvent = *event;

}

void AEvent::Init() {

114 115 116 117
	fAmpPos.Set(fNPoints);
	fTime.Set(fNPoints);
	fAmpCFD.Set(fNPoints);

118 119
	fGraphSignal = new TGraph();
	fGraphCFD = new TGraph();
120 121
	fInputEvent = 0;

122 123 124
	fCFratio = 0.;
	fCFtimeDelay = 0.;

125 126 127
	fNoiseRangeMin = 0.;
	fNoiseRangeMax = 1.;

128 129 130 131
}

void AEvent::SetGraphs() {

132
	fGraphSignal->Set(fNPoints);
133 134

	for (Int_t i=0; i<fNPoints; i++) {
135
		fGraphSignal->SetPoint(i, fTime[i], fAmpPos[i]);
136 137 138 139
	}

	return;
}
140

141
void AEvent::SetCFD() {
142 143

	Double_t level = 100.;	//is necessary to find cfd amplitude value closest to zero
144 145 146 147 148 149

	fGraphCFD->Set(fNPoints);

	//working variables
	Double_t maxCFD = 0., minCFD = 0.;
	Int_t imax = 0, imin = 0;
150 151 152

	for (Int_t i=0; i<fNPoints; i++) {

153 154 155 156 157
		//CFD method
		if(i>fCFtimeDelay) {
			fAmpCFD[i] = fAmpPos[i]*fCFratio*(-1);
			fAmpCFD[i] = fAmpCFD[i] + fAmpPos[i - fCFtimeDelay];
			fGraphCFD->SetPoint(i, fTime[i], fAmpCFD[i]);
158 159
		}

160
		//point for max CFD amplitude
161
		if(fAmpCFD[i] > maxCFD) {
162 163
			maxCFD = fAmpCFD[i];
			imax = i;
164 165
		}

166
		//point for min CFD amplitude
167
		if(fAmpCFD[i] < minCFD) {
168 169
			minCFD = fAmpCFD[i];
			imin = i;
170 171 172 173 174 175
		}

	}

	//finding "zero" of CFD amplitude
	for(Int_t j = imin; j < imax; j++) {   
176 177
		if(abs(fAmpCFD[j]) < level) {
			level = abs(fAmpCFD[j]);
178
			fTimeCFD = fTime[j];
179
		}
180
	}
Muzalevsky I.A's avatar
Muzalevsky I.A committed
181
}
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
/////// trying to create method
void AEvent::FindFrontProperties() {

	if (!fGraphSignal) {
		Warning("AEvent::FindZeroLevel", "Graph was not set");
		return;
	}

	Int_t NumM = fTimeAmpMax*10;
			
	for(Int_t i=NumM;i>0;i--)
	{
		if( fAmpPos[i]<0.1*fAmpMax ) {t_10 = fTime[i+1];break;}						
	}
	for(Int_t i=NumM;i>0;i--)
	{
		if( fAmpPos[i]<0.9*fAmpMax ) {t_90 = fTime[i+1];break;}						
	}
200

201 202 203 204 205 206 207 208
	TF1 *fit1 = new TF1("fit1","[1]*x+[0]");	//function for one parameter fitting in the range of pmin-pmax
	fit1->SetRange(t_10,t_90);
	fGraphSignal->Fit(fit1,"R","goff");
	EdgeSlope = fit1->GetParameter(1);

	delete fit1;
}
////////
209
Double_t AEvent::FindZeroLevel() {
210 211 212

	SetGraphs();
	Double_t correction = 0;
213
	TF1 *fit1 = new TF1("fit1","[0]");	//function for one parameter fitting in the range of pmin-pmax
214
	fit1->SetRange(fNoiseRangeMin,fNoiseRangeMax);
215 216 217 218 219

	if (!fGraphSignal) {
		Warning("AEvent::FindZeroLevel", "Graph was not set");
		return 0;
	}
220

221 222
	fGraphSignal->Fit(fit1,"RQN","goff");
	correction = fit1->GetParameter(0);
223

224 225
	delete fit1;
	return correction;
226
}
227

228 229
void AEvent::SetChargeCFD(Int_t tmin, Int_t tmax) {
	
230 231 232 233
	Double_t integral = 0.;					//voltage
	Double_t time_sig = 0;					//approximate signal duration in seconds
	const Double_t res = 50.; 				//resistance 50 Om
	time_sig = (double)(-tmin + tmax)*(1e-9);
234 235

	for(Int_t i = 0; i < fNPoints; i++) {
236
		if( fTime[i] > (fTimeCFD + tmin) && fTime[i] < (fTimeCFD + tmax) ) {
237 238 239
			integral = integral + fAmpPos[i];
		}
	}
240
	fChargeCFD = integral*time_sig/res;
241 242 243 244 245 246 247
//	cout<<fCharge<<endl;
//	printf("\nIntegral is %f , charge is %lf \n", integral, fCharge);

	return;

}

Muzalevsky I.A's avatar
Muzalevsky I.A committed
248
Double_t AEvent::GetfCFD() {
249
		return fTimeCFD;
Muzalevsky I.A's avatar
Muzalevsky I.A committed
250 251 252 253 254
}

Double_t AEvent::GetOnefTime(Int_t i) {
		return fTime[i];
}
255

Muzalevsky I.A's avatar
Muzalevsky I.A committed
256 257
Double_t AEvent::GetOnefAmpPos(Int_t i) {
		return fAmpPos[i];
258
}
259 260 261 262 263 264 265 266 267 268 269 270

Double_t AEvent::GetT_10() {
		return t_10;
}

Double_t AEvent::GetT_90() {
		return t_90;
}

Double_t AEvent::GetEdgeSlope() {
		return EdgeSlope;
}