Commit d5758504 authored by Muzalevsky I.A's avatar Muzalevsky I.A

functions GetTime and GetAmp in class RawEvent added

parent e3cb29b2
...@@ -65,6 +65,13 @@ void RawEvent::SetTime(Double_t t, Int_t i) { ...@@ -65,6 +65,13 @@ void RawEvent::SetTime(Double_t t, Int_t i) {
return; return;
} }
double RawEvent::GetTime(Int_t i) {
return fTime[i];
}
double RawEvent::GetAmp(Int_t i) {
return fAmp[i];
}
//void RawEvent::SetGraphs() { //void RawEvent::SetGraphs() {
// //
// gAmp->Set(fNPoints); // gAmp->Set(fNPoints);
......
...@@ -62,6 +62,10 @@ public: ...@@ -62,6 +62,10 @@ public:
void PrintTime(Int_t i); void PrintTime(Int_t i);
double GetTime(Int_t i);
double GetAmp(Int_t i);
// void InvertAmp(Double_t a, Int_t i); // void InvertAmp(Double_t a, Int_t i);
//Inverts the amplitudes i.e. makes from negative singals //Inverts the amplitudes i.e. makes from negative singals
//posititve signals and vise versa. //posititve signals and vise versa.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment