EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmMCMatchCreatorTask.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmMCMatchCreatorTask.h
1 // -------------------------------------------------------------------------
2 // ----- PNDMCMATCHCREATORTASK header file -----
3 // ----- Created 20/03/07 by R.Kliemt -----
4 // -------------------------------------------------------------------------
5 
6 
14 #ifndef PNDMCMATCHCREATORTASK_H
15 #define PNDMCMATCHCREATORTASK_H
16 
17 
18 // framework includes
19 #include "FairTask.h"
20 
21 #include <map>
22 
23 class CbmMCMatch;
24 class TClonesArray;
25 
27 {
28  public:
29 
32 
34  virtual ~CbmMCMatchCreatorTask();
35 
36 
38  virtual void SetParContainers();
39  virtual InitStatus Init();
40 
41 
43  virtual void Exec(Option_t* opt);
44 
45  virtual void Finish();
46 
47 
48 
49  private:
51  std::map<std::string, TClonesArray*> fBranches;
52 
53  TClonesArray* fMCLink;//->
54 
55  int fEventNr;
57 
58  void Register();
59 
60  void Reset();
61 
62  void ProduceHits();
63 
66 
68 
69 };
70 
71 #endif