PandaRoot
BSEmcPSACombinator.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 //-----------------------------------------------------------
14 // Description:
15 // Abstract class of combinator that to combine multi-PSA outputs
16 // Guang Zhao
17 //-----------------------------------------------------------
18 
19 #ifndef BSEMCPSACOMBINATOR_HH
20 #define BSEMCPSACOMBINATOR_HH
21 
22 #include <vector>
23 
24 #include "TObject.h"
25 
26 class BSEmcAbsPSA;
27 
29  public:
31  virtual ~BSEmcPSACombinator() {}
32  virtual Int_t
33  Combine(const std::vector<BSEmcAbsPSA *> &t_psa_list, const std::vector<Int_t> &t_nhit_list, std::vector<Double_t> &t_energy_list, std::vector<Double_t> &t_time_list) = 0;
34 
35  ClassDef(BSEmcPSACombinator, 1)
36 };
37 
38 #endif /*BSEMCPSACOMBINATOR_HH*/
Baseclass for pulseshapeanalysis ( featureextraction )
Definition: BSEmcAbsPSA.h:38
virtual Int_t Combine(const std::vector< BSEmcAbsPSA *> &t_psa_list, const std::vector< Int_t > &t_nhit_list, std::vector< Double_t > &t_energy_list, std::vector< Double_t > &t_time_list)=0