PandaRoot
PndGemMatchHits.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 //* $Id: */
14 
15 // -------------------------------------------------------------------------
16 // ----- PndGemMatchHits header file -----
17 // ----- Created 24/06/2009 by R. Karabowicz -----
18 // -------------------------------------------------------------------------
19 
30 #ifndef PNDGEMMATCHHITS_H
31 #define PNDGEMMATCHHITS_H 1
32 
33 #include "FairTask.h"
34 
35 #include "TStopwatch.h"
36 
37 class TClonesArray;
38 class PndGemDigiPar;
39 
40 class PndGemMatchHits : public FairTask {
41 
42  public:
45 
47  PndGemMatchHits(Int_t iVerbose);
48 
50  PndGemMatchHits(const char *name, Int_t iVerbose);
51 
53  virtual ~PndGemMatchHits();
54 
56  virtual void Exec(Option_t *opt);
57 
59  virtual void Finish();
60 
61  private:
62  PndGemDigiPar *fDigiPar;
63  TClonesArray *fPoints;
64  TClonesArray *fHits;
66  Int_t fNHits;
67  Int_t fNMatchedHits;
68  Int_t fNFakeHits;
69  Int_t fNMultiHits;
70  ;
71 
73  virtual void SetParContainers();
74 
76  virtual InitStatus Init();
77 
79  virtual InitStatus ReInit();
80 
82  void Reset();
83 
84  ClassDef(PndGemMatchHits, 1);
85 };
86 
87 #endif
virtual void Finish()
virtual void Exec(Option_t *opt)
Digitization Parameter Class for GEM part.
Definition: PndGemDigiPar.h:42
virtual ~PndGemMatchHits()