AEvent.h 2.83 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * AEvent.h
 *
 *  Created on: Dec 28, 2016
 *      Author: daria
 */

#ifndef DATACLASSES_AEVENT_H_
#define DATACLASSES_AEVENT_H_

#include <iostream>
#include <fstream>
#include <iomanip>
#include <sstream>

#include "TError.h"
#include "TString.h"
#include "TTree.h"
#include "TFile.h"
20
#include "TF1.h"
21 22 23 24 25
//#include "TMath.h"


#include "RawEvent.h"

26
//#define NCELLS 1024
27 28 29 30 31 32 33 34 35

using std::cout;
using std::endl;

class AEvent {

private:

	const Int_t fNPoints;	//!
36 37 38
	TArrayD fAmpPos;	//array for raw amplitudes
	TArrayD fTime;		//array for raw times

39 40
	Double_t fAmpMax;
	Double_t fTimeAmpMax;
41
	Double_t fZeroLevel;
42
	Double_t fEdgeXi;
43 44 45
	Double_t fEdgeSlope;	//slope coefficient for the rising edge of the signal
	Double_t fTime10;		//time of 10% of rising edge amplitude in ns
	Double_t fTime90;		//time of 10% of rising edge amplitude in ns
46 47

	TArrayD fAmpCFD;	//array for CFD amplitudes (attenuated, inversed and delayed)
48
	Double_t fTimeCFD;			//zero-crossing time
49
	Double_t fChargeCFD;	//charge of the signal in Coulomb
50

51 52
	TGraph *fGraphSignal;
	TGraph *fGraphCFD;
53 54 55

	RawEvent *fInputEvent;		//!

56
	Double_t fCFratio;		//!
57 58
	Double_t fCFtimeDelay;		//!

59 60 61
	Double_t fNoiseRangeMin;	//!
	Double_t fNoiseRangeMax;	//!

62 63
public:
	AEvent();
64
	AEvent(const Int_t npoints);
65 66
	virtual ~AEvent();
	ClassDef(AEvent,1);
67 68
	
	Double_t GetT_10();
69 70
	//returns time of 10% of rising edge amplitude in ns

71
	Double_t GetT_90();
72 73
	//returns time of 90% of rising edge amplitude in ns

74
	Double_t GetEdgeSlope();
75 76
	//returns slope coefficient for the rising edge of the signal

77 78
	Double_t GetEdgeXi();

Muzalevsky I.A's avatar
Muzalevsky I.A committed
79
	Double_t GetfCFD();
80

Muzalevsky I.A's avatar
Muzalevsky I.A committed
81
	Double_t GetOnefTime(Int_t i);
82

Muzalevsky I.A's avatar
Muzalevsky I.A committed
83
	Double_t GetOnefAmpPos(Int_t i);
84

85 86
	void ProcessEvent();
	void SetInputEvent(RawEvent** event);
87

88 89 90 91 92
	void SetCFratio(Double_t ratio) { fCFratio = ratio; };	
	//CFD set attenuation coefficient

	void SetCFtimeDelay(Double_t timeDelay) { fCFtimeDelay = timeDelay; };	
	//CFD set time delay (in points)
93

94 95 96
	void SetNoiseRange(Double_t min, Double_t max) { fNoiseRangeMin = min; fNoiseRangeMax = max; };
	//Set noise range to be used in FindZeroLevel()

97 98 99
	void Reset();
	 //Resets arrays to zeros

100 101
	TGraph* GetGraphCFD() {

102
		return fGraphCFD;
103
	}
104 105 106 107 108 109 110 111
	//draws CFD graphs

	TGraph* GetGraphSignal() {

		return fGraphSignal;
	}
	//draws signal shape graphs

112 113
	void FindFrontProperties();

114
	Double_t FindZeroLevel();
115
	//for zero level correction. one parameter fit between pmin and pmax
116
	//returns fit parameter i.e. number on which amplitude should be corrected
117

118
	void SetChargeCFD(Int_t tmin = -3, Int_t tmax = 17);
119 120 121 122
	//calculates charge of the signal (i.e. its integral 
	//in range of (tmin,tmax) in ns)
	//CFD time is taken as a start point

Muzalevsky I.A's avatar
Muzalevsky I.A committed
123
	//void SetLED(Double_t threshold = 0.001);
124 125
	//leading edge discriminator

126 127
private:
	void Init();
128
	void SetMaxAmplitudes();
129
	void SetGraphs();
130
	void SetCFD(); 	//constant fraction discriminator method
131 132 133
};

#endif /* DATACLASSES_AEVENT_H_ */