// ------------------------------------------------------------------------- // ----- PndMvdStripHitProducer source file ----- // ------------------------------------------------------------------------- #include "PndMvdStripHitProducer.h" // ----- Default constructor ------------------------------------------- PndMvdStripHitProducer::PndMvdStripHitProducer() { } // ------------------------------------------------------------------------- PndMvdStripHitProducer::PndMvdStripHitProducer(Double_t topPitch, Double_t botPitch, Double_t ori, Double_t skew, TVector2 topAnchor, TVector2 botAnchor, Int_t nrTopFE, Int_t nrBotFE, Int_t nrFECh, Double_t threshold, Double_t noise, TString sensorType, TString feType) : PndSdsStripHitProducer(topPitch, botPitch, ori, skew, topAnchor, botAnchor, nrTopFE, nrBotFE, nrFECh, threshold, noise, sensorType, feType) { } // ----- Destructor ---------------------------------------------------- PndMvdStripHitProducer::~PndMvdStripHitProducer() { delete fGeoH; } // ------------------------------------------------------------------------- void PndMvdStripHitProducer::SetBranchNames(TString inBranchname, TString outBranchname, TString folderName) { fBranchName = inBranchname; fOutBranchName = outBranchname; fFolderName = folderName; } void PndMvdStripHitProducer::SetBranchNames() { fBranchName = "MVDPoint"; fOutBranchName = "MVDStripDigis"; fFolderName = "PndMvd"; } ClassImp(PndMvdStripHitProducer);