REST-for-Physics  v2.3
Rare Event Searches ToolKit for Physics
Loading...
Searching...
No Matches
TRestDetectorHitsSmearingProcess.cxx
1/*************************************************************************
2 * This file is part of the REST software framework. *
3 * *
4 * Copyright (C) 2016 GIFNA/TREX (University of Zaragoza) *
5 * For more information see http://gifna.unizar.es/trex *
6 * *
7 * REST is free software: you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation, either version 3 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * REST is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have a copy of the GNU General Public License along with *
18 * REST in $REST_PATH/LICENSE. *
19 * If not, see http://www.gnu.org/licenses/. *
20 * For the list of contributors see $REST_PATH/CREDITS. *
21 *************************************************************************/
22
68#include "TRestDetectorHitsSmearingProcess.h"
69
70using namespace std;
71
73
78
83 delete fOutputEvent;
84 // TRestDetectorHitsSmearingProcess destructor
85}
86
91 SetSectionName(this->ClassName());
92 SetLibraryVersion(LIBRARY_VERSION);
93
94 fInputEvent = nullptr;
96}
97
99 if (fRandom != nullptr) {
100 delete fRandom;
101 }
102 fRandom = new TRandom3(fSeed);
103 fSeed = fRandom->TRandom::GetSeed();
104}
105
110 fInputEvent = (TRestDetectorHitsEvent*)inputEvent;
112
113 Double_t eDep = fInputEvent->GetTotalEnergy();
114 Double_t eRes = fResolutionAtERef * TMath::Sqrt(fEnergyRef / eDep) / 2.35 / 100.0;
115
116 Double_t gain = fRandom->Gaus(1.0, eRes);
117 for (unsigned int hit = 0; hit < fInputEvent->GetNumberOfHits(); hit++)
119 fInputEvent->GetEnergy(hit) * gain, fInputEvent->GetTime(hit),
120 fInputEvent->GetType(hit));
121
122 return fOutputEvent;
123}
Double_t GetX(int n) const
Returns the X-coordinate of hit entry n in mm.
Double_t GetY(int n) const
Returns the Y-coordinate of hit entry n in mm.
Double_t GetZ(int n) const
Returns the Z-coordinate of hit entry n in mm.
void AddHit(Double_t x, Double_t y, Double_t z, Double_t en, Double_t t=0, REST_HitType type=XYZ)
Adds a new hit to this event.
A process to include detector energy resolution in a TRestDetectorHitsEvent.
void Initialize() override
Function to initialize input/output event members and define the section name.
Double_t fEnergyRef
Reference energy for the FWHM.
Double_t fResolutionAtERef
FWHM at Energy of reference.
TRestDetectorHitsEvent * fOutputEvent
A pointer to the process output event.
TRestEvent * ProcessEvent(TRestEvent *inputEvent) override
The main processing event function.
TRestDetectorHitsEvent * fInputEvent
A pointer to the process input event.
void InitProcess() override
To be executed at the beginning of the run (outside event loop)
TRandom3 * fRandom
A pointer to the random generator initializes with fSeed.
ULong_t fSeed
The seed to be used for the random generator.
A base class for any REST event.
Definition TRestEvent.h:38
void SetEventInfo(TRestEvent *eve)
void SetLibraryVersion(TString version)
Set the library version of this metadata class.
void SetSectionName(std::string sName)
set the section name, clear the section content