naming param in method declaration

This commit is contained in:
azakir 2020-12-23 10:33:06 +01:00
parent 147d2c026d
commit 248e606435
2 changed files with 14 additions and 14 deletions

View File

@ -370,7 +370,7 @@ void MgAdapt::setConstantValue(double cnst)
{ {
constantValue = cnst; constantValue = cnst;
} }
bool MgAdapt::getConstantValue() double MgAdapt::getConstantValue() const
{ {
return constantValue; return constantValue;
} }

View File

@ -120,45 +120,45 @@ public:
void buildModel(); void buildModel();
void setData( MgAdaptHypothesisData*); void setData( MgAdaptHypothesisData*);
void setMedFileIn(std::string); void setMedFileIn(std::string fileName);
std::string getMedFileIn(); std::string getMedFileIn();
void setMedFileOut(std::string); void setMedFileOut(std::string fileOut);
std::string getMedFileOut(); std::string getMedFileOut();
void setMeshName(std::string); void setMeshName(std::string name);
std::string getMeshName(); std::string getMeshName();
void setMeshNameOut(std::string); void setMeshNameOut(std::string name);
std::string getMeshNameOut(); std::string getMeshNameOut();
void setMeshOutMed(bool); void setMeshOutMed(bool mybool);
bool getMeshOutMed(); bool getMeshOutMed();
void setPublish(bool); void setPublish(bool mybool);
bool getPublish(); bool getPublish();
void setFieldName(std::string); void setFieldName(std::string myFieldName);
std::string getFieldName(); std::string getFieldName();
void setTimeStep(int); void setTimeStep(int time);
int getTimeStep() const; int getTimeStep() const;
void setRankTimeStep(int, int ); void setRankTimeStep(int time, int myRank);
int getRank(); int getRank();
void setLogFile(std::string); void setLogFile(std::string);
std::string getLogFile(); std::string getLogFile();
void setVerbosityLevel(int); void setVerbosityLevel(int verbosity);
int getVerbosityLevel(); int getVerbosityLevel();
void setRemoveOnSuccess(bool); void setRemoveOnSuccess(bool mybool);
bool getRemoveOnSuccess(); bool getRemoveOnSuccess();
MgAdaptHypothesisData* getData() const; MgAdaptHypothesisData* getData() const;
void setUseLocalMap(bool); void setUseLocalMap(bool mybool);
bool getUseLocalMap(); bool getUseLocalMap();
void setUseBackgroundMap(bool); void setUseBackgroundMap(bool);
@ -168,7 +168,7 @@ public:
bool getUseConstantValue(); bool getUseConstantValue();
void setConstantValue(double); void setConstantValue(double);
bool getConstantValue(); double getConstantValue() const;
void setSizeMapFile(std::string); void setSizeMapFile(std::string);
std::string getSizeMapFile(); std::string getSizeMapFile();