REST-for-Physics  v2.3
Rare Event Searches ToolKit for Physics
TRestRawSignalRemoveChannelsProcess.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_TRestRawSignalRemoveChannelsProcess
24#define RestCore_TRestRawSignalRemoveChannelsProcess
25
26#include <TRestEventProcess.h>
27
28#include "TRestRawReadoutMetadata.h"
29#include "TRestRawSignalEvent.h"
30
33 private:
36
39
42
43 void InitFromConfigFile() override;
44
45 void Initialize() override;
46
47 void LoadDefaultConfig();
48
49 protected:
50 std::vector<Int_t> fChannelIds;
51 std::vector<std::string> fChannelTypes;
52
53 std::map<Int_t, std::string> fChannelTypesToRemove;
54
55 public:
56 RESTValue GetInputEvent() const override { return fInputEvent; }
57 RESTValue GetOutputEvent() const override { return fOutputEvent; }
58
59 TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;
60
61 void LoadConfig(const std::string& configFilename, const std::string& name = "");
62
63 std::vector<std::string> GetChannelTypes() const { return fChannelTypes; }
64 std::vector<Int_t> GetChannelIds() const { return fChannelIds; }
65
67 void PrintMetadata() override;
68
71
73 const char* GetProcessName() const override { return "removeChannels"; }
74
75 // Constructor
77 TRestRawSignalRemoveChannelsProcess(const char* configFilename);
78
79 // Destructor
81
82 ClassDefOverride(TRestRawSignalRemoveChannelsProcess, 3);
83};
84#endif
A base class for any REST event process.
A base class for any REST event.
Definition: TRestEvent.h:38
An event container for time rawdata signals with fixed length.
A process allowing to remove selected channels from a TRestRawSignalEvent.
void InitFromConfigFile() override
Function reading input parameters from the RML TRestDetectorSignalToRawSignalProcess metadata section...
TRestRawSignalEvent * fOutputEvent
A pointer to the specific TRestRawSignalEvent input.
TRestRawReadoutMetadata * fReadoutMetadata
A pointer to the readout metadata.
TRestEvent * ProcessEvent(TRestEvent *inputEvent) override
The main processing event function.
RESTValue GetInputEvent() const override
Get pointer to input event. Must be implemented in the derived class.
void Initialize() override
Function to initialize input/output event members and define the section name.
TRestEventProcess * Maker()
Returns a new instance of this class.
TRestRawSignalEvent * fInputEvent
A pointer to the specific TRestDetectorSignalEvent input.
void PrintMetadata() override
It prints out the process parameters stored in the metadata structure.
void LoadDefaultConfig()
Function to load the default config in absence of RML input.
const char * GetProcessName() const override
Returns the name of this process.
RESTValue GetOutputEvent() const override
Get pointer to output event. Must be implemented in the derived class.
void LoadConfig(const std::string &configFilename, const std::string &name="")
Function to load the configuration from an external configuration file.