1 | /*
|
---|
2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
3 | * Copyright (C) 2020 Universite catholique de Louvain (UCLouvain), Belgium
|
---|
4 | *
|
---|
5 | * This program is free software: you can redistribute it and/or modify
|
---|
6 | * it under the terms of the GNU General Public License as published by
|
---|
7 | * the Free Software Foundation, either version 3 of the License, or
|
---|
8 | * (at your option) any later version.
|
---|
9 | *
|
---|
10 | * This program is distributed in the hope that it will be useful,
|
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | * GNU General Public License for more details.
|
---|
14 | *
|
---|
15 | * You should have received a copy of the GNU General Public License
|
---|
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef ClusterCounting_h
|
---|
20 | #define ClusterCounting_h
|
---|
21 |
|
---|
22 | /** \class ClusterCounting
|
---|
23 | *
|
---|
24 | * Counts ionisation clusters of energy loss in drift chambers
|
---|
25 | *
|
---|
26 | * \authors F. Bedeschi - INFN
|
---|
27 | * M. Selvaggi - CERN
|
---|
28 | *
|
---|
29 | */
|
---|
30 |
|
---|
31 | #include "classes/DelphesModule.h"
|
---|
32 |
|
---|
33 | class TIterator;
|
---|
34 | class TObjArray;
|
---|
35 |
|
---|
36 | class TrkUtil;
|
---|
37 |
|
---|
38 | class ClusterCounting: public DelphesModule
|
---|
39 | {
|
---|
40 | public:
|
---|
41 | ClusterCounting();
|
---|
42 | ~ClusterCounting();
|
---|
43 |
|
---|
44 | void Init();
|
---|
45 | void Process();
|
---|
46 | void Finish();
|
---|
47 |
|
---|
48 | private:
|
---|
49 |
|
---|
50 | Double_t fRmin;
|
---|
51 | Double_t fRmax;
|
---|
52 | Double_t fZmin;
|
---|
53 | Double_t fZmax;
|
---|
54 | Double_t fBz;
|
---|
55 |
|
---|
56 | Int_t fGasOption;
|
---|
57 |
|
---|
58 | TrkUtil *fTrackUtil;
|
---|
59 |
|
---|
60 | TIterator *fItInputArray; //!
|
---|
61 |
|
---|
62 | const TObjArray *fInputArray; //!
|
---|
63 |
|
---|
64 | TObjArray *fOutputArray; //!
|
---|
65 |
|
---|
66 | ClassDef(ClusterCounting, 1)
|
---|
67 | };
|
---|
68 |
|
---|
69 | #endif
|
---|