REST-for-Physics  v2.3
Rare Event Searches ToolKit for Physics
TRestDetectorHitsToTrackProcess.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_TRestDetectorHitsToTrackProcess
24#define RestCore_TRestDetectorHitsToTrackProcess
25
26#include <TRestDetectorHitsEvent.h>
27#include <TRestTrackEvent.h>
28
29#include "TMatrixD.h"
30#include "TRestEventProcess.h"
31
34 private:
35#ifndef __CINT__
36 TRestDetectorHitsEvent* fHitsEvent;
37 TRestTrackEvent* fTrackEvent;
38#endif
39
40 void Initialize() override;
41 Int_t FindTracks(TRestHits* hits);
42
43 protected:
45 Double_t fClusterDistance = 2.5;
46
47 public:
48 RESTValue GetInputEvent() const override { return fHitsEvent; }
49 RESTValue GetOutputEvent() const override { return fTrackEvent; }
50
51 TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;
52
54 void PrintMetadata() override {
56
57 RESTMetadata << " cluster-distance : " << fClusterDistance << " mm " << RESTendl;
58
59 EndPrintProcess();
60 }
61
63 const char* GetProcessName() const override { return "hitsToTrack"; }
64
67
68 ClassDefOverride(TRestDetectorHitsToTrackProcess, 1); // Template for a REST "event process" class
69 // inherited from TRestEventProcess
70};
71#endif
A process to convert a TRestDetectorHitsEvent into a TRestTrackEvent.
TRestEvent * ProcessEvent(TRestEvent *inputEvent) override
The main processing event function.
RESTValue GetOutputEvent() const override
Get pointer to output event. Must be implemented in the derived class.
Double_t fClusterDistance
The hits distance used to define a cluster of hits.
void PrintMetadata() override
It prints out the process parameters stored in the metadata structure.
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.
Int_t FindTracks(TRestHits *hits)
The main algorithm. It idetifies the hits that belong to each track and adds them already to the outp...
const char * GetProcessName() const override
Returns the name of this process.
A base class for any REST event process.
void BeginPrintProcess()
[name, cut range]
A base class for any REST event.
Definition: TRestEvent.h:38
It saves a 3-coordinate position and an energy for each punctual deposition.
Definition: TRestHits.h:39
endl_t RESTendl
Termination flag object for TRestStringOutput.