FairRoot/PandaRoot
PndMvdHitProducerIdeal.cxx
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // ----- PndMvdHitProducerIdeal source file -----
3 // -------------------------------------------------------------------------
4 
5 
7 #include "FairRun.h"
8 #include "FairRuntimeDb.h"
9 
10 
11 // ----- Default constructor -------------------------------------------
13  PndSdsHitProducerIdeal("Ideal MVD Hit Producer")
14 {
15  fInBranchName = "MVDPoint";
16  SetPersistency(kTRUE);
17 }
18 // -------------------------------------------------------------------------
19 
20 
21 
22 // ----- Destructor ----------------------------------------------------
24 {
25 }
26 
27 void PndMvdHitProducerIdeal::SetBranchNames(TString inBranchname, TString outBranchname, TString folderName)
28 {
29  fInBranchName = inBranchname;
30  fOutBranchName = outBranchname;
31  fFolderName = folderName;
32  SetInBranchId();
33 }
34 
35 
37 {
38  fInBranchName = "MVDPoint";
39  fOutBranchName = "MVDHit";
40  fFolderName = "PndMvd";
41  SetInBranchId();
42 }
43 
44 
45 
TString fOutBranchName
Definition: PndSdsTask.h:40
void SetPersistency(Bool_t val=kTRUE)
TString fInBranchName
Definition: PndSdsTask.h:39
TString fFolderName
Definition: PndSdsTask.h:41
ClassImp(PndAnaContFact)
virtual void SetInBranchId()
Definition: PndSdsTask.h:30