REST-for-Physics  v2.3
Rare Event Searches ToolKit for Physics
TRestRawFeminosRootToSignalProcess.h
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
23#ifndef RestCore_TRestRawFeminosRootToSignalProcess
24#define RestCore_TRestRawFeminosRootToSignalProcess
25
26#include <TRestEventProcess.h>
27
28#include "TRestRawSignalEvent.h"
29#include "TRestRawToSignalProcess.h"
30
35
37 private:
38 TRestRawSignalEvent* fSignalEvent = nullptr;
39 Long64_t fInputTreeEntry = 0;
40
41 TFile* fInputFile = nullptr;
42 TTree* fInputEventTree = nullptr;
43 TTree* fInputRunTree = nullptr;
44
45 ULong64_t fInputEventTreeTimestamp = 0;
46 std::vector<unsigned short>* fInputEventTreeSignalIds = nullptr;
47 std::vector<unsigned short>* fInputEventTreeSignalValues = nullptr;
48
49 public:
50 RESTValue GetInputEvent() const override { return RESTValue((TRestEvent*)nullptr); }
51 RESTValue GetOutputEvent() const override { return fSignalEvent; }
52
53 void InitProcess() override;
54 void Initialize() override;
55
56 TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;
57 const char* GetProcessName() const override { return "FeminosRootToSignal"; }
58
59 // Constructor
61 TRestRawFeminosRootToSignalProcess(const char* configFilename);
62
63 // Destructor
65
67 1); // Template for a REST "event process" class inherited from
68 // TRestEventProcess
69};
70#endif
A base class for any REST event process.
A base class for any REST event.
Definition: TRestEvent.h:38
void InitProcess() override
To be executed at the beginning of the run (outside event loop)
TRestEvent * ProcessEvent(TRestEvent *inputEvent) override
Process one event.
RESTValue GetOutputEvent() const override
Get pointer to output event. Must be implemented in the derived class.
RESTValue GetInputEvent() const override
Get pointer to input event. Must be implemented in the derived class.
void Initialize() override
Making default settings.
An event container for time rawdata signals with fixed length.