// ------------------------------------------------------------------------- // ----- PndMvdPixelClusterTasksource file ----- // ------------------------------------------------------------------------- #include "PndMvdPixelClusterTask.h" // ----- Default constructor ------------------------------------------- PndMvdPixelClusterTask::PndMvdPixelClusterTask() { } // ------------------------------------------------------------------------- PndMvdPixelClusterTask::PndMvdPixelClusterTask(Double_t radius, TString geoFile) : PndSdsPixelClusterTask(radius, geoFile) { /* fRadius = radius; fParams.push_back(radius); fGeoFile = geoFile;*/ } // ------------------------------------------------------------------------- // ----- Destructor ---------------------------------------------------- PndMvdPixelClusterTask::~PndMvdPixelClusterTask() { } // ------------------------------------------------------------------------- void PndMvdPixelClusterTask::SetBranchNames(TString inBranchname, TString outHitBranchname, TString outClustBranchname, TString folderName) { fBranchName = inBranchname; fHitBranchName = outHitBranchname; fClustBranchName = outClustBranchname; fFolderName = folderName; } void PndMvdPixelClusterTask::SetBranchNames() { fBranchName = "MVDPixelDigis"; fHitBranchName = "MVDHitsPixel"; fClustBranchName = "MVDClusterCand"; fFolderName = "MVD"; } ClassImp(PndMvdPixelClusterTask);