REST-for-Physics  v2.3
Rare Event Searches ToolKit for Physics
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
69#include "TRestDetectorHitsSmearingProcess.h"
70
71using namespace std;
72
74
79
84
89 SetSectionName(this->ClassName());
90 SetLibraryVersion(LIBRARY_VERSION);
91
92 fInputEvent = nullptr;
94}
95
97 delete fRandom;
98 fRandom = new TRandom3(fSeed);
99 fSeed = fRandom->TRandom::GetSeed();
100
101 fReadout = dynamic_cast<TRestDetectorReadout*>(fRunInfo->GetMetadataClass("TRestDetectorReadout"));
102
103 if (!fReadout && !fChannelType.empty()) {
104 throw runtime_error(
105 "TRestDetectorHitsSmearingProcess::InitProcess() : "
106 "TRestDetectorReadout not found and channel type is requested");
107 }
108
109 transform(fChannelType.begin(), fChannelType.end(), fChannelType.begin(), ::tolower);
110 const auto validChannelTypes = {"veto", "tpc"};
111 if (find(validChannelTypes.begin(), validChannelTypes.end(), fChannelType) == validChannelTypes.end()) {
112 throw runtime_error(
113 "TRestDetectorHitsSmearingProcess::InitProcess() : Channel type not valid: valid types are: "
114 "'tpc', 'veto'");
115 }
116}
117
122 fInputEvent = (TRestDetectorHitsEvent*)inputEvent;
124
125 Double_t eDep = fInputEvent->GetTotalEnergy();
126 Double_t eRes = fResolutionAtERef * TMath::Sqrt(fEnergyRef / eDep) / 2.35 / 100.0;
127
128 Double_t gain = fRandom->Gaus(1.0, eRes);
129 for (int hit = 0; hit < static_cast<int>(fInputEvent->GetNumberOfHits()); hit++) {
130 const auto hitType = fInputEvent->GetType(hit);
131
132 // VETO hit types are processed according the "veto" channel type. All other hit types are processed
133 // according to the "tpc" type (XYZ, XZ, etc.)
134
135 if (fChannelType == "veto") {
136 if (hitType == REST_HitType::VETO) {
138 fInputEvent->GetEnergy(hit) * gain, fInputEvent->GetTime(hit),
139 fInputEvent->GetType(hit));
140 } else {
141 // Do nothing
143 fInputEvent->GetEnergy(hit), fInputEvent->GetTime(hit),
144 fInputEvent->GetType(hit));
145 }
146 } else if (fChannelType == "tpc") {
147 if (hitType == REST_HitType::VETO) {
148 // Do nothing
150 fInputEvent->GetEnergy(hit), fInputEvent->GetTime(hit),
151 fInputEvent->GetType(hit));
152 } else {
154 fInputEvent->GetEnergy(hit) * gain, fInputEvent->GetTime(hit),
155 fInputEvent->GetType(hit));
156 }
157 } else {
158 // this should never happen
159 throw runtime_error(
160 "TRestDetectorHitsSmearingProcess::ProcessEvent() : "
161 "Channel type not valid: valid types are: "
162 "'tpc', 'veto'");
163 }
164 }
165
166 return fOutputEvent;
167}
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 metadata class to generate/store a readout description.
TRestRun * fRunInfo
< Pointer to TRestRun object where to find metadata.
A base class for any REST event.
Definition: TRestEvent.h:38
void SetEventInfo(TRestEvent *eve)
Definition: TRestEvent.cxx:137
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