Skip to content

Commit

Permalink
SvtCalibMaker: Remove unused function argument
Browse files Browse the repository at this point in the history
  • Loading branch information
plexoos committed Sep 2, 2022
1 parent 3c97063 commit 7f24ac6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions StRoot/StSvtCalibMaker/StSvtPedMaker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ Int_t StSvtPedMaker::CalcPed2ndOrd()
}

//_____________________________________________________________________________
Int_t StSvtPedMaker::WriteToFile(const char* fileName, char* option)
Int_t StSvtPedMaker::WriteToFile(const char* fileName)
{
if (Debug()) gMessMgr->Debug() << "StSvtPedMaker::WriteToFile" << endm;

Expand Down Expand Up @@ -578,7 +578,7 @@ Int_t StSvtPedMaker::WriteToFile(const char* fileName, char* option)
}

//_____________________________________________________________________________
Int_t StSvtPedMaker::WriteRMSToFile(const char* fileName, char* option)
Int_t StSvtPedMaker::WriteRMSToFile(const char* fileName)
{
if (Debug()) gMessMgr->Debug() << "StSvtPedMaker::WriteToFile" << endm;

Expand Down
4 changes: 2 additions & 2 deletions StRoot/StSvtCalibMaker/StSvtPedMaker.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ class StSvtPedMaker : public StMaker {
virtual Int_t Make();
virtual Int_t CalcPed();
virtual Int_t CalcPed2ndOrd();
virtual Int_t WriteToFile(const char* fileName = "svtPedestal.root", char* option = "NEW");
virtual Int_t WriteRMSToFile(const char* fileName = "svtPedestal.root", char* option = "NEW");
virtual Int_t WriteToFile(const char* fileName = "svtPedestal.root");
virtual Int_t WriteRMSToFile(const char* fileName = "svtPedestal.root");
virtual Int_t ReadFromFile(const char* fileName = "svtPedestal.root");
virtual Int_t ReadRMSFromFile(const char* fileName = "svtPedestal.root");
virtual Int_t ResetStat();
Expand Down

0 comments on commit 7f24ac6

Please sign in to comment.