FairRoot/PandaRoot
PndMvdIdealClusterTask.cxx
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // ----- PndMvdIdealClusterTask source file -----
3 // -------------------------------------------------------------------------
4 
6 
7 // ----- Default constructor -------------------------------------------
10 {
11 }
12 
13 PndMvdIdealClusterTask::PndMvdIdealClusterTask(Double_t radius, Int_t FEcolumns, Int_t FErows, TString geoFile) :
14  PndSdsIdealClusterTask(radius, FEcolumns, FErows, geoFile)
15 {
16 }
17 
18 // -------------------------------------------------------------------------
19 
20 
21 // ----- Destructor ----------------------------------------------------
23 {
24 }
25 // -------------------------------------------------------------------------
26 
27 // ----- Initialization of Parameter Containers -------------------------
29 {
30 }
31 // ----- Manula I/O folders/branches ----------------------------------------------------
32 void PndMvdIdealClusterTask::SetBranchNames(TString inBranchname, TString outHitBranchname, TString outClustBranchname, TString folderName)
33 {
34  fInBranchName = inBranchname;
35  fOutBranchName = outHitBranchname;
36  fClustBranchName = outClustBranchname;
37  fFolderName = folderName;
38 }
39 
40 // ----- Default I/O folder/branches ----------------------------------------------------
42 {
43  fInBranchName = "MVDPixelDigis";
44  fOutBranchName = "MVDHitsPixelIdeal";
45  fClustBranchName = "MVDPixelClusterCandIdeal";
46  fFolderName = "PndMvd";
47 }
48 
50 
TString fOutBranchName
Definition: PndSdsTask.h:40
Double_t
TString fInBranchName
Definition: PndSdsTask.h:39
TString fFolderName
Definition: PndSdsTask.h:41
ClassImp(PndMvdIdealClusterTask)