• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisione5bbe57fd4db406ba439f673987c6fd8ea97f321 (tree)
Time2013-07-25 00:57:04
AuthorMikiya Fujii <mikiya.fujii@gmai...>
CommiterMikiya Fujii

Log Message

Some methods for RPMD in Parameters-class is inlined #27279

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/trunk@1426 1136aad2-a195-0410-b898-f5ea1d11b9d8

Change Summary

Incremental Difference

--- a/src/base/Parameters.cpp
+++ b/src/base/Parameters.cpp
@@ -361,7 +361,7 @@ bool Parameters::RequiresMullikenCIS() const{
361361 0<this->electronicStateIndecesMullikenCIS->size());
362362 }
363363
364-// methods for RPMD
364+/*// methods for RPMD
365365 int Parameters::GetElectronicStateIndexRPMD() const{
366366 return this->electronicStateIndexRPMD;
367367 }
@@ -417,7 +417,7 @@ unsigned long Parameters::GetSeedRPMD() const{
417417 void Parameters::SetSeedRPMD(unsigned long seed){
418418 this->seedRPMD = seed;
419419 }
420-
420+*/
421421 // methods for NASCO
422422 int Parameters::GetTotalStepsNASCO() const{
423423 return this->totalStepsNASCO;
--- a/src/base/Parameters.h
+++ b/src/base/Parameters.h
@@ -165,20 +165,20 @@ public:
165165 unsigned long GetSeedMC() const {return this->seedMC;}
166166 void SetSeedMC(unsigned long seed) {this->seedMC = seed;}
167167 // RPMD
168- int GetElectronicStateIndexRPMD() const;
169- void SetElectronicStateIndexRPMD(int electronicStateIndex);
170- int GetNumberElectronicStatesRPMD() const;
171- void SetNumberElectronicStatesRPMD(int NumberElectronicStates);
172- int GetTotalStepsRPMD() const;
173- void SetTotalStepsRPMD(int totalSteps);
174- double GetTemperatureRPMD() const;
175- void SetTemperatureRPMD(double temperature);
176- double GetTimeWidthRPMD() const;
177- void SetTimeWidthRPMD(double stepWidth);
178- int GetNumberBeadsRPMD() const;
179- void SetNumberBeadsRPMD(int numberBeads);
180- unsigned long GetSeedRPMD() const;
181- void SetSeedRPMD(unsigned long seed);
168+ int GetElectronicStateIndexRPMD() const {return this->electronicStateIndexRPMD;}
169+ void SetElectronicStateIndexRPMD(int i) {this->electronicStateIndexRPMD = i;}
170+ int GetNumberElectronicStatesRPMD() const{return this->numberElectronicStatesRPMD;}
171+ void SetNumberElectronicStatesRPMD(int n) {this->numberElectronicStatesRPMD = n;}
172+ int GetTotalStepsRPMD() const {return this->totalStepsRPMD;}
173+ void SetTotalStepsRPMD(int steps) {this->totalStepsRPMD = steps;}
174+ double GetTemperatureRPMD() const {return this->temperatureRPMD;}
175+ void SetTemperatureRPMD(double t) {this->temperatureRPMD = t;}
176+ double GetTimeWidthRPMD() const {return this->timeWidthRPMD;}
177+ void SetTimeWidthRPMD(double dr) {this->timeWidthRPMD = dr;}
178+ int GetNumberBeadsRPMD() const {return this->numberBeadsRPMD;}
179+ void SetNumberBeadsRPMD(int b) {this->numberBeadsRPMD = b;}
180+ unsigned long GetSeedRPMD() const {return this->seedRPMD;}
181+ void SetSeedRPMD(unsigned long seed) {this->seedRPMD = seed;}
182182 // NASCO
183183 int GetTotalStepsNASCO() const;
184184 void SetTotalStepsNASCO(int totalSteps);