EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PndMcCloner.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PndMcCloner.h
1 #ifndef PNDMCCLONER_H
2 #define PNDMCCLONER_H 1
3 
4 
5 #include "FairTask.h"
6 #include "PndMCTrack.h"
7 
8 class TClonesArray;
9 
10 class PndMcCloner : public FairTask
11 {
12 
13  public:
14 
16  PndMcCloner();
17 
18 
20  ~PndMcCloner();
21 
22 
24  virtual InitStatus Init();
25 
26 
28  virtual void Exec(Option_t* opt);
29 
30  // PndHit* AddHit(Int_t detID, TVector3& pos, TVector3& dpos, Int_t index);
31 
32  private:
33 
35  TClonesArray* fInputArray;
36 
38  TClonesArray* fOutputArray;
39 
40 
42 
43 };
44 
45 #endif