#include <SimParameters.h>
|
|
Definition at line 864 of file SimParameters.h. 00864 : mgridforcelist() {};
|
|
||||||||||||
|
Definition at line 865 of file SimParameters.h. 00865 : mgridforcelist() { 00866 initialize_config_data(c,cwd); 00867 };
|
|
|
Definition at line 868 of file SimParameters.h. 00868 {};
|
|
||||||||||||
|
Definition at line 94 of file SimParameters.C. References ParseOptions::check_consistency(), NAMD_die(), and ParseOptions::set(). 00096 {
00097
00098 ParseOptions opts; // Object to check consistency of config file
00099
00100 config_parser(opts);
00101
00103 if (!opts.check_consistency())
00104 {
00105 NAMD_die("Internal error in configuration file parser");
00106 }
00107
00108 // Now, feed the object with the actual configuration options through the
00109 // ParseOptions file and make sure everything is OK
00110 if (!opts.set(*config))
00111 {
00112 NAMD_die("ERROR(S) IN THE CONFIGURATION FILE");
00113 }
00114
00116
00117 check_config(opts,config,cwd);
00118
00119 print_config(opts,config,cwd);
00120
00121 }
|
|
|
Definition at line 886 of file SimParameters.h. Referenced by Node::startup(). 00886 { return proxyRecvSpanningTree == 1; }
|
|
|
Definition at line 887 of file SimParameters.h. Referenced by WorkDistrib::savePatchMap(), and WorkDistrib::sendPatchMap(). 00887 { return proxyRecvSpanningTree == -1; }
|
|
|
Definition at line 884 of file SimParameters.h. Referenced by Node::startup(). 00884 { return proxySendSpanningTree == 1; }
|
|
|
Definition at line 885 of file SimParameters.h. Referenced by WorkDistrib::savePatchMap(), and WorkDistrib::sendPatchMap(). 00885 { return proxySendSpanningTree == -1; }
|
|
|
Definition at line 6009 of file SimParameters.C. References binAtomFile, binCoorFile, binRefFile, binVelFile, MGridforceParamsList::clear(), FFTWWisdomString, MIStream::get(), mgridforcelist, tclBCScript, and MGridforceParamsList::unpack_data(). 06011 {
06012 msg->get(sizeof(SimParameters),(char*)this);
06013 if ( FFTWWisdomString ) {
06014 int fftwlen;
06015 msg->get(fftwlen);
06016 FFTWWisdomString = new char[fftwlen];
06017 msg->get(fftwlen,FFTWWisdomString);
06018 #ifdef NAMD_FFTW
06019 #ifdef NAMD_FFTW_3
06020 fftwf_import_wisdom_from_string(FFTWWisdomString);
06021 #else
06022 fftw_import_wisdom_from_string(FFTWWisdomString);
06023 #endif
06024 #endif
06025 }
06026 if ( tclBCScript ) {
06027 int tcllen;
06028 msg->get(tcllen);
06029 tclBCScript = new char[tcllen];
06030 msg->get(tcllen,tclBCScript);
06031 }
06032
06033 #ifdef MEM_OPT_VERSION
06034 int filelen;
06035 msg->get(filelen);
06036 binAtomFile = new char[filelen];
06037 msg->get(filelen, binAtomFile);
06038
06039 msg->get(filelen);
06040 binCoorFile = new char[filelen];
06041 msg->get(filelen, binCoorFile);
06042
06043 if(binVelFile) {
06044 msg->get(filelen);
06045 binVelFile = new char[filelen];
06046 msg->get(filelen, binVelFile);
06047 }
06048
06049 if(binRefFile) {
06050 msg->get(filelen);
06051 binRefFile = new char[filelen];
06052 msg->get(filelen, binRefFile);
06053 }
06054 #endif
06055
06056
06057 // The simParameters bit copy above put illegal values in the list pointers
06058 // So this resets everything so that unpacking will work.
06059 mgridforcelist.clear();
06060 mgridforcelist.unpack_data(msg);
06061
06062 delete msg;
06063 }
|
|
||||||||||||
|
Definition at line 135 of file SimParameters.C. References accelMDalpha, accelMDE, accelMDTalpha, accelMDTE, alchDispLambda, alchElecLambda, alchEquilSteps, alchFepElecOn, alchFepWCADispOn, alchFepWCArcut1, alchFepWCArcut2, alchFepWCArcut3, alchFepWCARepuOn, alchLambda, alchLambda2, alchRepLambda, atobool(), berendsenPressureCompressibility, berendsenPressureOn, berendsenPressureRelaxationTime, berendsenPressureTarget, commOnly, consForceScaling, constraintScaling, eField, eFieldFreq, eFieldPhase, firstTimestep, fixCellDims, fixCellDimX, fixCellDimY, fixCellDimZ, fixedAtomsOn, initialTemp, langevin_useBAOAB, langevinPistonDecay, langevinPistonOn, langevinPistonPeriod, langevinPistonTarget, langevinPistonTemp, langevinTemp, loweAndersenTemp, MAX_SCRIPT_PARAM_SIZE, maximumMove, minimizeOn, N, NAMD_die(), nonbondedScaling, outputFilename, PRESSUREFACTOR, reassignTemp, rescaleTemp, SCRIPT_PARSE_BOOL, SCRIPT_PARSE_FLOAT, SCRIPT_PARSE_INT, SCRIPT_PARSE_MOD_FLOAT, SCRIPT_PARSE_STRING, SCRIPT_PARSE_VECTOR, scriptArg1, scriptArg2, scriptArg3, scriptArg4, scriptArg5, ComputeNonbondedUtil::select(), stirAxis, stirPivot, surfaceTensionTarget, tclBCArgs, useConstantArea, useConstantRatio, useFlexibleCell, and useGroupPressure. Referenced by Node::scriptParam(). 00135 {
00136
00137 if ( CkMyRank() ) return;
00138
00139 #define MAX_SCRIPT_PARAM_SIZE 128
00140 #define SCRIPT_PARSE_BOOL(NAME,VAR) { if ( ! strncasecmp(param,(NAME),MAX_SCRIPT_PARAM_SIZE) ) { (VAR) = atobool(value); return; } }
00141 #define SCRIPT_PARSE_INT(NAME,VAR) { if ( ! strncasecmp(param,(NAME),MAX_SCRIPT_PARAM_SIZE) ) { (VAR) = atoi(value); return; } }
00142 #define SCRIPT_PARSE_FLOAT(NAME,VAR) { if ( ! strncasecmp(param,(NAME),MAX_SCRIPT_PARAM_SIZE) ) { (VAR) = atof(value); return; } }
00143 #define SCRIPT_PARSE_MOD_FLOAT(NAME,VAR,MOD) { if ( ! strncasecmp(param,(NAME),MAX_SCRIPT_PARAM_SIZE) ) { (VAR) = atof(value) MOD; return; } }
00144 #define SCRIPT_PARSE_VECTOR(NAME,VAR) { if ( ! strncasecmp(param,(NAME),MAX_SCRIPT_PARAM_SIZE) ) { (VAR).set(value); return; } }
00145 #define SCRIPT_PARSE_STRING(NAME,VAR) { if ( ! strncasecmp(param,(NAME),MAX_SCRIPT_PARAM_SIZE) ) { strcpy(VAR,value); return; } }
00146
00147 SCRIPT_PARSE_FLOAT("scriptArg1",scriptArg1)
00148 SCRIPT_PARSE_FLOAT("scriptArg2",scriptArg2)
00149 SCRIPT_PARSE_FLOAT("scriptArg3",scriptArg3)
00150 SCRIPT_PARSE_FLOAT("scriptArg4",scriptArg4)
00151 SCRIPT_PARSE_FLOAT("scriptArg5",scriptArg5)
00152 SCRIPT_PARSE_INT("numsteps",N)
00153 SCRIPT_PARSE_INT("firsttimestep",firstTimestep)
00154 SCRIPT_PARSE_FLOAT("reassignTemp",reassignTemp)
00155 SCRIPT_PARSE_FLOAT("rescaleTemp",rescaleTemp)
00156 SCRIPT_PARSE_BOOL("velocityQuenching",minimizeOn)
00157 SCRIPT_PARSE_BOOL("maximumMove",maximumMove)
00158 // SCRIPT_PARSE_BOOL("Langevin",langevinOn)
00159 SCRIPT_PARSE_FLOAT("langevinTemp",langevinTemp)
00160 SCRIPT_PARSE_BOOL("langevinBAOAB",langevin_useBAOAB) // [!!] Use the BAOAB integrator or not
00161 SCRIPT_PARSE_FLOAT("loweAndersenTemp",loweAndersenTemp) // BEGIN LA, END LA
00162 SCRIPT_PARSE_FLOAT("initialTemp",initialTemp)
00163 SCRIPT_PARSE_BOOL("useGroupPressure",useGroupPressure)
00164 SCRIPT_PARSE_BOOL("useFlexibleCell",useFlexibleCell)
00165 SCRIPT_PARSE_BOOL("useConstantArea",useConstantArea)
00166 SCRIPT_PARSE_BOOL("fixCellDims",fixCellDims)
00167 SCRIPT_PARSE_BOOL("fixCellDimX",fixCellDimX)
00168 SCRIPT_PARSE_BOOL("fixCellDimY",fixCellDimY)
00169 SCRIPT_PARSE_BOOL("fixCellDimZ",fixCellDimZ)
00170 SCRIPT_PARSE_BOOL("useConstantRatio",useConstantRatio)
00171 SCRIPT_PARSE_BOOL("LangevinPiston",langevinPistonOn)
00172 SCRIPT_PARSE_MOD_FLOAT("LangevinPistonTarget",
00173 langevinPistonTarget,/PRESSUREFACTOR)
00174 SCRIPT_PARSE_FLOAT("LangevinPistonPeriod",langevinPistonPeriod)
00175 SCRIPT_PARSE_FLOAT("LangevinPistonDecay",langevinPistonDecay)
00176 SCRIPT_PARSE_FLOAT("LangevinPistonTemp",langevinPistonTemp)
00177 SCRIPT_PARSE_MOD_FLOAT("SurfaceTensionTarget",
00178 surfaceTensionTarget,*(100.0/PRESSUREFACTOR))
00179 SCRIPT_PARSE_BOOL("BerendsenPressure",berendsenPressureOn)
00180 SCRIPT_PARSE_MOD_FLOAT("BerendsenPressureTarget",
00181 berendsenPressureTarget,/PRESSUREFACTOR)
00182 SCRIPT_PARSE_MOD_FLOAT("BerendsenPressureCompressibility",
00183 berendsenPressureCompressibility,*PRESSUREFACTOR)
00184 SCRIPT_PARSE_FLOAT("BerendsenPressureRelaxationTime",
00185 berendsenPressureRelaxationTime)
00186 SCRIPT_PARSE_FLOAT("constraintScaling",constraintScaling)
00187 SCRIPT_PARSE_FLOAT("consForceScaling",consForceScaling)
00188 SCRIPT_PARSE_STRING("outputname",outputFilename)
00189 SCRIPT_PARSE_STRING("tclBCArgs",tclBCArgs)
00190 SCRIPT_PARSE_VECTOR("eField",eField)
00191 SCRIPT_PARSE_FLOAT("eFieldFreq",eFieldFreq)
00192 SCRIPT_PARSE_FLOAT("eFieldPhase",eFieldPhase)
00193 SCRIPT_PARSE_FLOAT("accelMDE",accelMDE)
00194 SCRIPT_PARSE_FLOAT("accelMDalpha",accelMDalpha)
00195 SCRIPT_PARSE_FLOAT("accelMDTE",accelMDTE)
00196 SCRIPT_PARSE_FLOAT("accelMDTalpha",accelMDTalpha)
00197 SCRIPT_PARSE_VECTOR("stirAxis",stirAxis)
00198 SCRIPT_PARSE_VECTOR("stirPivot",stirPivot)
00199 if ( ! strncasecmp(param,"mgridforcescale",MAX_SCRIPT_PARAM_SIZE) ) {
00200 NAMD_die("Can't yet modify mgridforcescale in a script");
00201 return;
00202 }
00203 if ( ! strncasecmp(param,"mgridforcevoff",MAX_SCRIPT_PARAM_SIZE) ) {
00204 NAMD_die("Can't yet modify mgridforcevoff in a script");
00205 return;
00206 }
00207
00208 if ( ! strncasecmp(param,"fixedatoms",MAX_SCRIPT_PARAM_SIZE) ) {
00209 if ( ! fixedAtomsOn )
00210 NAMD_die("FixedAtoms may not be enabled in a script.");
00211 if ( ! fixedAtomsForces )
00212 NAMD_die("To use fixedAtoms in script first use fixedAtomsForces yes.");
00213 fixedAtomsOn = atobool(value);
00214 return;
00215 }
00216
00217 //Modifications for alchemical fep
00218 SCRIPT_PARSE_INT("alchEquilSteps",alchEquilSteps)
00219
00220 if ( ! strncasecmp(param,"alchRepLambda",MAX_SCRIPT_PARAM_SIZE) ) {
00221 alchRepLambda = atof(value);
00222 alchFepWCARepuOn = true;
00223 alchFepWCADispOn = false;
00224 alchFepElecOn = false;
00225 ComputeNonbondedUtil::select();
00226 return;
00227 }
00228
00229 if ( ! strncasecmp(param,"alchDispLambda",MAX_SCRIPT_PARAM_SIZE) ) {
00230 alchDispLambda = atof(value);
00231 alchFepWCARepuOn = false;
00232 alchFepWCADispOn = true;
00233 alchFepElecOn = false;
00234 ComputeNonbondedUtil::select();
00235 return;
00236 }
00237
00238 if ( ! strncasecmp(param,"alchElecLambda",MAX_SCRIPT_PARAM_SIZE) ) {
00239 alchElecLambda = atof(value);
00240 alchFepWCARepuOn = false;
00241 alchFepWCADispOn = false;
00242 alchFepElecOn = true;
00243 ComputeNonbondedUtil::select();
00244 return;
00245 }
00246
00247
00248 if ( ! strncasecmp(param,"alchFepWCArcut1",MAX_SCRIPT_PARAM_SIZE) ) {
00249 alchFepWCArcut1 = atof(value);
00250 ComputeNonbondedUtil::select();
00251 return;
00252 }
00253
00254 if ( ! strncasecmp(param,"alchFepWCArcut2",MAX_SCRIPT_PARAM_SIZE) ) {
00255 alchFepWCArcut2 = atof(value);
00256 ComputeNonbondedUtil::select();
00257 return;
00258 }
00259
00260 if ( ! strncasecmp(param,"alchFepWCArcut3",MAX_SCRIPT_PARAM_SIZE) ) {
00261 alchFepWCArcut3 = atof(value);
00262 ComputeNonbondedUtil::select();
00263 return;
00264 }
00265
00266 if ( ! strncasecmp(param,"alchLambda",MAX_SCRIPT_PARAM_SIZE) ) {
00267 alchLambda = atof(value);
00268 ComputeNonbondedUtil::select();
00269 return;
00270 }
00271
00272 if ( ! strncasecmp(param,"alchLambda2",MAX_SCRIPT_PARAM_SIZE) ) {
00273 alchLambda2 = atof(value);
00274 ComputeNonbondedUtil::select();
00275 return;
00276 }
00277 //fepe
00278
00279 // REDUNDANT TI BEGINS
00280 // if ( ! strncasecmp(param,"tiLambda",MAX_SCRIPT_PARAM_SIZE) ) {
00281 // alchLambda = atof(value);
00282 // ComputeNonbondedUtil::select();
00283 // return;
00284 // }
00285 // REDUNDANT TI ENDS
00286
00287 if ( ! strncasecmp(param,"nonbondedScaling",MAX_SCRIPT_PARAM_SIZE) ) {
00288 nonbondedScaling = atof(value);
00289 ComputeNonbondedUtil::select();
00290 return;
00291 }
00292 if ( ! strncasecmp(param,"commOnly",MAX_SCRIPT_PARAM_SIZE) ) {
00293 commOnly = atobool(value);
00294 ComputeNonbondedUtil::select();
00295 return;
00296 }
00297
00298 char *error = new char[2 * MAX_SCRIPT_PARAM_SIZE + 100];
00299 sprintf(error,"Setting parameter %s from script failed!\n",param);
00300 NAMD_die(error);
00301
00302 }
|
|
|
Definition at line 5951 of file SimParameters.C. References binAtomFile, binCoorFile, binRefFile, binVelFile, MOStream::end(), FFTWWisdomString, mgridforcelist, MGridforceParamsList::pack_data(), MOStream::put(), and tclBCScript. 05953 {
05954 /*MOStream *msg = com_obj->newOutputStream(ALLBUTME, SIMPARAMSTAG, BUFSIZE);
05955 if ( msg == NULL )
05956 {
05957 NAMD_die("memory allocation failed in SimParameters::send_SimParameters");
05958 }*/
05959
05960 msg->put(sizeof(SimParameters),(char*)this);
05961 if ( FFTWWisdomString ) {
05962 int fftwlen = strlen(FFTWWisdomString) + 1;
05963 msg->put(fftwlen);
05964 msg->put(fftwlen,FFTWWisdomString);
05965 }
05966 if ( tclBCScript ) {
05967 int tcllen = strlen(tclBCScript) + 1;
05968 msg->put(tcllen);
05969 msg->put(tcllen,tclBCScript);
05970 }
05971
05972 #ifdef MEM_OPT_VERSION
05973 int filelen = strlen(binAtomFile)+1;
05974 msg->put(filelen);
05975 msg->put(filelen, binAtomFile);
05976
05977 filelen = strlen(binCoorFile)+1;
05978 msg->put(filelen);
05979 msg->put(filelen, binCoorFile);
05980
05981 if(binVelFile) {
05982 filelen = strlen(binVelFile)+1;
05983 msg->put(filelen);
05984 msg->put(filelen, binVelFile);
05985 }
05986
05987 if(binRefFile) {
05988 filelen = strlen(binRefFile)+1;
05989 msg->put(filelen);
05990 msg->put(filelen, binRefFile);
05991 }
05992 #endif
05993
05994 mgridforcelist.pack_data(msg);
05995
05996 msg->end();
05997 }
|
|
|
Definition at line 796 of file SimParameters.h. |
|
|
Definition at line 506 of file SimParameters.h. Referenced by Controller::rescaleaccelMD(), and scriptSet(). |
|
|
Definition at line 501 of file SimParameters.h. Referenced by Controller::receivePressure(), Controller::rescaleaccelMD(), and ComputeGlobal::saveTotalForces(). |
|
|
Definition at line 499 of file SimParameters.h. Referenced by ComputeHomeTuples< TholeElem, Thole, TholeValue >::ComputeHomeTuples(), Sequencer::integrate(), Sequencer::rescaleaccelMD(), Controller::rescaleaccelMD(), and ComputeGlobal::saveTotalForces(). |
|
|
Definition at line 500 of file SimParameters.h. Referenced by ComputeHomeTuples< TholeElem, Thole, TholeValue >::ComputeHomeTuples(), Sequencer::integrate(), Sequencer::rescaleaccelMD(), and Controller::rescaleaccelMD(). |
|
|
Definition at line 505 of file SimParameters.h. Referenced by Controller::rescaleaccelMD(), and scriptSet(). |
|
|
Definition at line 502 of file SimParameters.h. Referenced by Sequencer::rescaleaccelMD(), and Controller::rescaleaccelMD(). |
|
|
Definition at line 503 of file SimParameters.h. Referenced by Sequencer::rescaleaccelMD(), and Controller::rescaleaccelMD(). |
|
|
|
Definition at line 504 of file SimParameters.h. Referenced by Controller::receivePressure(), and Controller::rescaleaccelMD(). |
|
|
Definition at line 508 of file SimParameters.h. Referenced by Controller::rescaleaccelMD(), and scriptSet(). |
|
|
Definition at line 507 of file SimParameters.h. Referenced by Controller::rescaleaccelMD(), and scriptSet(). |
|
|
Definition at line 519 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 520 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 522 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 512 of file SimParameters.h. Referenced by Controller::adaptTempUpdate(). |
|
|
Definition at line 521 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 513 of file SimParameters.h. Referenced by Sequencer::adaptTempUpdate(), Controller::adaptTempUpdate(), and Controller::rescaleVelocities(). |
|
|
Definition at line 516 of file SimParameters.h. Referenced by Sequencer::adaptTempUpdate(), and Controller::adaptTempUpdate(). |
|
|
Definition at line 525 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 523 of file SimParameters.h. Referenced by Sequencer::langevinVelocities(), and Sequencer::langevinVelocitiesBBK2(). |
|
|
Definition at line 514 of file SimParameters.h. Referenced by Sequencer::adaptTempUpdate(), Controller::adaptTempUpdate(), and Controller::rescaleVelocities(). |
|
|
|
Definition at line 515 of file SimParameters.h. Referenced by Controller::adaptTempUpdate(). |
|
|
Definition at line 528 of file SimParameters.h. Referenced by Controller::adaptTempUpdate(). |
|
|
Definition at line 524 of file SimParameters.h. Referenced by Controller::rescaleVelocities(). |
|
|
Definition at line 526 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 527 of file SimParameters.h. Referenced by Controller::adaptTempInit(), and Controller::adaptTempWriteRestart(). |
|
|
Definition at line 518 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 517 of file SimParameters.h. Referenced by Controller::adaptTempInit(). |
|
|
Definition at line 405 of file SimParameters.h. Referenced by ComputePme::ComputePme(), ComputePmeMgr::initialize(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 384 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 385 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), ComputePmeMgr::submitReductions(), ComputePme::ungridForces(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 396 of file SimParameters.h. Referenced by ComputePme::ComputePme(), ComputePmeMgr::initialize(), Controller::outputTiEnergy(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 391 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 393 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), Controller::outputTiEnergy(), Controller::printFepMessage(), Controller::printTiMessage(), and scriptSet(). |
|
|
Definition at line 378 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), ComputePmeMgr::submitReductions(), ComputePme::ungridForces(), and Controller::writeFepEnergyData(). |
|
|
|
Definition at line 377 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 386 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 387 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 388 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 376 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 379 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), ComputeNonbondedUtil::select(), ComputePmeMgr::submitReductions(), ComputePme::ungridForces(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 381 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), Controller::outputTiEnergy(), Controller::printFepMessage(), Controller::printTiMessage(), scriptSet(), ComputeNonbondedUtil::select(), ComputePme::ungridForces(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 382 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), Controller::printFepMessage(), scriptSet(), ComputeNonbondedUtil::select(), and ComputePmeMgr::submitReductions(). |
|
|
Definition at line 380 of file SimParameters.h. |
|
|
Definition at line 373 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 392 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), and Controller::outputTiEnergy(). |
|
|
Definition at line 390 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), and Controller::outputTiEnergy(). |
|
|
Definition at line 383 of file SimParameters.h. Referenced by scriptSet(), ComputeNonbondedUtil::select(), and Controller::writeFepEnergyData(). |
|
|
Definition at line 389 of file SimParameters.h. Referenced by Controller::outputFepEnergy(), Controller::printFepMessage(), Controller::printTiMessage(), and Controller::writeFepEnergyData(). |
|
|
|
Definition at line 401 of file SimParameters.h. Referenced by Controller::outputTiEnergy(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 394 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 434 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), and ComputeNonbondedCUDA::recvYieldDevice(). |
|
|
Definition at line 435 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), and HomePatch::gbisComputeAfterP1(). |
|
|
Definition at line 815 of file SimParameters.h. Referenced by buildExclusions(), and NamdState::configListInit(). |
|
|
Definition at line 198 of file SimParameters.h. Referenced by CollectionMaster::receiveDataStream(). |
|
|
Definition at line 154 of file SimParameters.h. Referenced by Output::coordinateNeeded(), Output::forceNeeded(), and Output::velocityNeeded(). |
|
|
Definition at line 552 of file SimParameters.h. Referenced by Controller::berendsenPressure(), and scriptSet(). |
|
|
Definition at line 554 of file SimParameters.h. Referenced by Sequencer::berendsenPressure(), and Controller::berendsenPressure(). |
|
|
Definition at line 550 of file SimParameters.h. Referenced by Sequencer::berendsenPressure(), Controller::berendsenPressure(), ComputeGridForce::doForce(), OptPmeMgr::initialize(), and scriptSet(). |
|
|
Definition at line 553 of file SimParameters.h. Referenced by Controller::berendsenPressure(), and scriptSet(). |
|
|
Definition at line 551 of file SimParameters.h. Referenced by Controller::berendsenPressure(), and scriptSet(). |
|
|
Definition at line 214 of file SimParameters.h. |
|
|
Definition at line 212 of file SimParameters.h. |
|
|
Definition at line 849 of file SimParameters.h. Referenced by receive_SimParameters(), and send_SimParameters(). |
|
|
Definition at line 850 of file SimParameters.h. Referenced by receive_SimParameters(), and send_SimParameters(). |
|
|
Definition at line 852 of file SimParameters.h. Referenced by receive_SimParameters(), and send_SimParameters(). |
|
|
Definition at line 851 of file SimParameters.h. Referenced by receive_SimParameters(), and send_SimParameters(). |
|
|
Definition at line 116 of file SimParameters.h. |
|
|
Definition at line 117 of file SimParameters.h. |
|
|
Definition at line 118 of file SimParameters.h. |
|
|
Definition at line 119 of file SimParameters.h. |
|
|
Definition at line 486 of file SimParameters.h. |
|
|
Definition at line 488 of file SimParameters.h. |
|
|
Definition at line 489 of file SimParameters.h. |
|
|
Definition at line 465 of file SimParameters.h. Referenced by ComputeMgr::createComputes(), and Sequencer::integrate(). |
|
|
Definition at line 757 of file SimParameters.h. Referenced by ComputeHomeTuples< TholeElem, Thole, TholeValue >::doWork(), Sequencer::integrate(), scriptSet(), ComputeNonbondedUtil::select(), ComputePme::ungridForces(), OptPmeCompute::ungridForces_compute(), and OptPmeCompute::ungridForces_finalize(). |
|
|
Definition at line 176 of file SimParameters.h. Referenced by ParallelIOMgr::bcastMolInfo(), NamdState::configListInit(), WorkDistrib::createAtomLists(), Molecule::num_deg_freedom(), Molecule::num_group_deg_freedom(), Controller::receivePressure(), ParallelIOMgr::recvMolInfo(), and ParallelIOMgr::updateMolInfo(). |
|
|
Definition at line 858 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(), and ComputeMgr::updateLocalComputes4(). |
|
|
Definition at line 709 of file SimParameters.h. |
|
|
Definition at line 708 of file SimParameters.h. Referenced by NamdState::configListInit(), WorkDistrib::mapComputes(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 710 of file SimParameters.h. Referenced by ComputeConsForce::doForce(), and scriptSet(). |
|
|
Definition at line 327 of file SimParameters.h. |
|
|
Definition at line 325 of file SimParameters.h. |
|
|
Definition at line 329 of file SimParameters.h. Referenced by ComputeConsTorque::doForce(). |
|
|
Definition at line 324 of file SimParameters.h. Referenced by NamdState::configListInit(), WorkDistrib::mapComputes(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 328 of file SimParameters.h. |
|
|
Definition at line 330 of file SimParameters.h. |
|
|
Definition at line 249 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 276 of file SimParameters.h. Referenced by ComputeRestraints::doForce(), and scriptSet(). |
|
|
Definition at line 247 of file SimParameters.h. Referenced by NamdState::configListInit(), WorkDistrib::mapComputes(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 267 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 267 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 267 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 454 of file SimParameters.h. Referenced by Parameters::Parameters(). |
|
|
Definition at line 428 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), ComputeGBISser::doWork(), HomePatch::gbisComputeAfterP1(), HomePatch::gbisComputeAfterP2(), ComputeNonbondedCUDA::recvYieldDevice(), and HomePatch::setGBISIntrinsicRadii(). |
|
|
|
Definition at line 682 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 687 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 688 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 689 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 690 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 685 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 686 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 679 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 683 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 684 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 681 of file SimParameters.h. Referenced by ComputeCylindricalBC::ComputeCylindricalBC(). |
|
|
Definition at line 803 of file SimParameters.h. |
|
|
Definition at line 803 of file SimParameters.h. |
|
|
Definition at line 803 of file SimParameters.h. |
|
|
Definition at line 199 of file SimParameters.h. |
|
|
Definition at line 189 of file SimParameters.h. Referenced by Output::coordinate(), and Output::coordinateNeeded(). |
|
|
Definition at line 191 of file SimParameters.h. Referenced by Output::coordinate(). |
|
|
Definition at line 799 of file SimParameters.h. |
|
|
Definition at line 799 of file SimParameters.h. |
|
|
Definition at line 799 of file SimParameters.h. |
|
|
|
Definition at line 485 of file SimParameters.h. |
|
|
Definition at line 796 of file SimParameters.h. |
|
|
Definition at line 796 of file SimParameters.h. |
|
|
Definition at line 446 of file SimParameters.h. Referenced by BondElem::computeForce(). |
|
|
Definition at line 444 of file SimParameters.h. Referenced by BondElem::computeForce(), and HomePatch::hardWallDrude(). |
|
|
Definition at line 442 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 440 of file SimParameters.h. Referenced by BondElem::computeForce(), Sequencer::hardWallDrude(), and HomePatch::hardWallDrude(). |
|
|
Definition at line 447 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
|
Definition at line 441 of file SimParameters.h. Referenced by HomePatch::hardWallDrude(), and Sequencer::langevinVelocitiesBBK2(). |
|
|
Definition at line 112 of file SimParameters.h. Referenced by Controller::berendsenPressure(), ComputeEField::doForce(), colvarproxy_namd::dt(), Sequencer::integrate(), Controller::langevinPiston1(), Controller::langevinPiston2(), and Controller::printEnergies(). |
|
|
Definition at line 693 of file SimParameters.h. Referenced by ComputeEField::doForce(), and scriptSet(). |
|
|
Definition at line 694 of file SimParameters.h. Referenced by ComputeEField::doForce(), and scriptSet(). |
|
|
Definition at line 692 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 695 of file SimParameters.h. Referenced by ComputeEField::doForce(), and scriptSet(). |
|
|
Definition at line 184 of file SimParameters.h. Referenced by buildExclusions(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 539 of file SimParameters.h. Referenced by NamdState::configListInit(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 418 of file SimParameters.h. Referenced by ComputeExtMgr::recvCoord(). |
|
|
Definition at line 419 of file SimParameters.h. Referenced by ComputeExtMgr::recvCoord(). |
|
|
Definition at line 417 of file SimParameters.h. Referenced by ComputeExtMgr::recvCoord(). |
|
|
Definition at line 416 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 706 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 648 of file SimParameters.h. Referenced by OptPmeXPencil::fft_init(), OptPmeYPencil::fft_init(), OptPmeZPencil::fft_init(), PmeXPencil::fft_init(), PmeYPencil::fft_init(), PmeZPencil::fft_init(), and ComputePmeMgr::initialize(). |
|
|
Definition at line 649 of file SimParameters.h. Referenced by PmeXPencil::fft_init(), PmeYPencil::fft_init(), PmeZPencil::fft_init(), and ComputePmeMgr::initialize(). |
|
|
Definition at line 650 of file SimParameters.h. |
|
|
Definition at line 651 of file SimParameters.h. |
|
|
Definition at line 652 of file SimParameters.h. Referenced by receive_SimParameters(), and send_SimParameters(). |
|
|
Definition at line 130 of file SimParameters.h. Referenced by LdbCoordinator::initialize(), and Controller::printEnergies(). |
|
|
|
Definition at line 545 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), Controller::receivePressure(), and scriptSet(). |
|
|
Definition at line 546 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), Controller::receivePressure(), and scriptSet(). |
|
|
Definition at line 547 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), Controller::receivePressure(), and scriptSet(). |
|
|
Definition at line 548 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), Controller::receivePressure(), and scriptSet(). |
|
|
Definition at line 468 of file SimParameters.h. Referenced by ComputeHomeTuples< TholeElem, Thole, TholeValue >::loadTuples(), HomePatch::positionsReady(), ComputeNonbondedUtil::select(), and ParallelIOMgr::updateMolInfo(). |
|
|
|
Definition at line 583 of file SimParameters.h. |
|
|
Definition at line 582 of file SimParameters.h. |
|
|
Definition at line 580 of file SimParameters.h. |
|
|
Definition at line 581 of file SimParameters.h. |
|
|
Definition at line 579 of file SimParameters.h. Referenced by ComputeGlobal::ComputeGlobal(), WorkDistrib::mapComputes(), WorkDistrib::patchMapInit(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 126 of file SimParameters.h. |
|
|
Definition at line 620 of file SimParameters.h. Referenced by ComputeFmmSerialMgr::recvCoord(). |
|
|
Definition at line 619 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(), WorkDistrib::patchMapInit(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 621 of file SimParameters.h. Referenced by ComputeFmmSerialMgr::recvCoord(). |
|
|
Definition at line 201 of file SimParameters.h. |
|
|
Definition at line 194 of file SimParameters.h. Referenced by Output::force(), Output::forceNeeded(), and Output::velocity(). |
|
|
Definition at line 463 of file SimParameters.h. Referenced by ComputeMgr::createComputes(), and ParallelIOMgr::freeMolSpace(). |
|
|
Definition at line 425 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), and ComputeNonbondedCUDA::recvYieldDevice(). |
|
|
Definition at line 585 of file SimParameters.h. Referenced by ComputeGlobal::ComputeGlobal(), WorkDistrib::mapComputes(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 124 of file SimParameters.h. Referenced by Controller::compareChecksums(), Sequencer::integrate(), Controller::integrate(), Sequencer::minimize(), OptPmeMgr::recvEvir(), Sequencer::runComputeObjects(), and OptPmeXPencil::submit_evir(). |
|
|
Definition at line 432 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), HomePatch::gbisComputeAfterP1(), and HomePatch::gbisComputeAfterP2(). |
|
|
Definition at line 431 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), HomePatch::gbisComputeAfterP1(), and HomePatch::gbisComputeAfterP2(). |
|
|
Definition at line 433 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), HomePatch::gbisComputeAfterP1(), and HomePatch::gbisComputeAfterP2(). |
|
|
|
Definition at line 426 of file SimParameters.h. Referenced by ComputeGlobal::ComputeGlobal(), and WorkDistrib::mapComputes(). |
|
|
Definition at line 833 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 455 of file SimParameters.h. Referenced by ComputeMgr::createComputes(), and WorkDistrib::mapComputes(). |
|
|
Definition at line 484 of file SimParameters.h. |
|
|
Definition at line 287 of file SimParameters.h. |
|
|
Definition at line 285 of file SimParameters.h. Referenced by NamdState::configListInit(), Controller::printEnergies(), Molecule::receive_GoMolecule(), ComputeNonbondedUtil::select(), and Molecule::send_GoMolecule(). |
|
|
Definition at line 284 of file SimParameters.h. Referenced by Controller::printEnergies(), Molecule::receive_Molecule(), ComputeNonbondedUtil::select(), and Molecule::send_Molecule(). |
|
|
Definition at line 289 of file SimParameters.h. Referenced by NamdState::configListInit(), Molecule::receive_GoMolecule(), ComputeNonbondedUtil::select(), and Molecule::send_GoMolecule(). |
|
|
Definition at line 286 of file SimParameters.h. |
|
|
Definition at line 255 of file SimParameters.h. |
|
|
Definition at line 256 of file SimParameters.h. |
|
|
Definition at line 257 of file SimParameters.h. |
|
|
Definition at line 259 of file SimParameters.h. |
|
|
Definition at line 252 of file SimParameters.h. |
|
|
Definition at line 254 of file SimParameters.h. |
|
|
Definition at line 258 of file SimParameters.h. |
|
|
Definition at line 253 of file SimParameters.h. |
|
|
Definition at line 820 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 796 of file SimParameters.h. |
|
|
Definition at line 741 of file SimParameters.h. Referenced by HomePatch::doGroupSizeCheck(). |
|
|
Definition at line 134 of file SimParameters.h. Referenced by NamdHybridLB::NamdHybridLB(). |
|
|
Definition at line 786 of file SimParameters.h. |
|
|
Definition at line 738 of file SimParameters.h. |
|
|
Definition at line 808 of file SimParameters.h. Referenced by Output::coordinate(), Output::coordinateNeeded(), and Controller::printEnergies(). |
|
|
Definition at line 811 of file SimParameters.h. Referenced by ComputeMgr::createComputes(), and GlobalMasterIMD::GlobalMasterIMD(). |
|
|
Definition at line 806 of file SimParameters.h. Referenced by Output::coordinate(), Output::coordinateNeeded(), ComputeMgr::createComputes(), and Controller::printEnergies(). |
|
|
Definition at line 807 of file SimParameters.h. Referenced by GlobalMasterIMD::GlobalMasterIMD(). |
|
|
Definition at line 809 of file SimParameters.h. Referenced by GlobalMasterIMD::get_vmd_forces(), and GlobalMasterIMD::GlobalMasterIMD(). |
|
|
Definition at line 174 of file SimParameters.h. Referenced by Controller::adaptTempInit(), Controller::algorithm(), WorkDistrib::createAtomLists(), Sequencer::integrate(), Sequencer::reinitVelocities(), and scriptSet(). |
|
|
Definition at line 430 of file SimParameters.h. |
|
|
Definition at line 429 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), HomePatch::gbisComputeAfterP2(), and ComputeNonbondedCUDA::recvYieldDevice(). |
|
|
Definition at line 474 of file SimParameters.h. Referenced by Sequencer::integrate(), Sequencer::langevinVelocitiesBBK1(), Sequencer::langevinVelocitiesBBK2(), and scriptSet(). |
|
|
Definition at line 472 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 473 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
|
Definition at line 557 of file SimParameters.h. Referenced by Controller::langevinPiston1(). |
|
|
Definition at line 560 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), and scriptSet(). |
|
|
Definition at line 556 of file SimParameters.h. Referenced by ComputeGridForce::doForce(), OptPmeMgr::initialize(), Sequencer::langevinPiston(), Controller::langevinPiston1(), Controller::langevinPiston2(), scriptSet(), Controller::writeExtendedSystemData(), and Controller::writeExtendedSystemLabels(). |
|
|
Definition at line 559 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), and scriptSet(). |
|
|
Definition at line 558 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), and scriptSet(). |
|
|
Definition at line 561 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), and scriptSet(). |
|
|
Definition at line 471 of file SimParameters.h. Referenced by Controller::adaptTempInit(), Sequencer::adaptTempUpdate(), colvarproxy_namd::colvarproxy_namd(), Sequencer::integrate(), Sequencer::langevinVelocities(), Sequencer::langevinVelocitiesBBK2(), and scriptSet(). |
|
|
Definition at line 132 of file SimParameters.h. Referenced by LdbCoordinator::initialize(). |
|
|
|
Definition at line 436 of file SimParameters.h. Referenced by Sequencer::integrate(), WorkDistrib::mapComputes(), Sequencer::minimize(), Molecule::Molecule(), WorkDistrib::patchMapInit(), Molecule::receive_Molecule(), Molecule::send_Molecule(), and NamdCentLB::Strategy(). |
|
|
Definition at line 127 of file SimParameters.h. Referenced by LdbCoordinator::createLoadBalancer(), LdbCoordinator::initialize(), and LdbCoordinator::rebalance(). |
|
|
Definition at line 135 of file SimParameters.h. |
|
|
Definition at line 137 of file SimParameters.h. |
|
|
Definition at line 129 of file SimParameters.h. Referenced by LdbCoordinator::initialize(). |
|
|
Definition at line 136 of file SimParameters.h. |
|
|
Definition at line 138 of file SimParameters.h. Referenced by NamdCentLB::Strategy(). |
|
|
Definition at line 128 of file SimParameters.h. Referenced by LdbCoordinator::initialize(), and NamdCentLB::Strategy(). |
|
|
Definition at line 168 of file SimParameters.h. |
|
|
Definition at line 169 of file SimParameters.h. |
|
|
Definition at line 166 of file SimParameters.h. |
|
|
Definition at line 167 of file SimParameters.h. |
|
|
|
|
Definition at line 414 of file SimParameters.h. |
|
|
Definition at line 413 of file SimParameters.h. Referenced by Sequencer::langevinVelocities(), Sequencer::langevinVelocitiesBBK2(), Sequencer::reassignVelocities(), and Sequencer::reinitVelocities(). |
|
|
Definition at line 223 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 111 of file SimParameters.h. Referenced by Controller::printEnergies(), and Controller::receivePressure(). |
|
|
Definition at line 860 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 108 of file SimParameters.h. Referenced by Sequencer::integrate(), Sequencer::minimize(), and Sequencer::runComputeObjects(). |
|
|
Definition at line 735 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 481 of file SimParameters.h. |
|
|
Definition at line 478 of file SimParameters.h. Referenced by Sequencer::integrate(). |
|
|
Definition at line 480 of file SimParameters.h. |
|
|
Definition at line 479 of file SimParameters.h. Referenced by scriptSet(). |
|
|
Definition at line 837 of file SimParameters.h. Referenced by Node::startup(). |
|
|
Definition at line 217 of file SimParameters.h. Referenced by HomePatch::doMarginCheck(). |
|
|
Definition at line 233 of file SimParameters.h. |
|
|
Definition at line 231 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 775 of file SimParameters.h. |
|
|
Definition at line 664 of file SimParameters.h. Referenced by Sequencer::maximumMove(), and scriptSet(). |
|
|
Definition at line 763 of file SimParameters.h. |
|
|
Definition at line 165 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 761 of file SimParameters.h. |
|
|
Definition at line 727 of file SimParameters.h. Referenced by Controller::printEnergies(). |
|
|
Definition at line 262 of file SimParameters.h. Referenced by Molecule::build_gridforce_params(), receive_SimParameters(), Node::reloadGridforceGrid(), and send_SimParameters(). |
|
|
Definition at line 261 of file SimParameters.h. Referenced by NamdState::configListInit(), WorkDistrib::mapComputes(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 773 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 661 of file SimParameters.h. Referenced by Controller::minimize(). |
|
|
Definition at line 658 of file SimParameters.h. Referenced by NamdState::configListInit(), and ScriptTcl::run(). |
|
|
Definition at line 663 of file SimParameters.h. Referenced by Sequencer::minimizationQuenchVelocity(), and scriptSet(). |
|
|
Definition at line 662 of file SimParameters.h. Referenced by Controller::minimize(). |
|
|
Definition at line 660 of file SimParameters.h. Referenced by Controller::minimize(). |
|
|
Definition at line 659 of file SimParameters.h. Referenced by Controller::minimize(). |
|
|
Definition at line 464 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 745 of file SimParameters.h. Referenced by HomePatch::mollyAverage(). |
|
|
Definition at line 743 of file SimParameters.h. Referenced by Controller::compareChecksums(), Sequencer::integrate(), and Sequencer::minimize(). |
|
|
Definition at line 744 of file SimParameters.h. Referenced by HomePatch::mollyAverage(). |
|
|
Definition at line 307 of file SimParameters.h. |
|
|
Definition at line 309 of file SimParameters.h. Referenced by Sequencer::addMovDragToPosition(). |
|
|
Definition at line 306 of file SimParameters.h. Referenced by NamdState::configListInit(), Sequencer::integrate(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 310 of file SimParameters.h. |
|
|
Definition at line 293 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 295 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 595 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(), and ComputeMsmSerialMgr::recvCoord(). |
|
|
Definition at line 605 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(). |
|
|
Definition at line 606 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(). |
|
|
Definition at line 607 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(). |
|
|
Definition at line 609 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(), and ComputeMsmSerialMgr::recvCoord(). |
|
|
Definition at line 601 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(), and ComputeMsmSerialMgr::recvCoord(). |
|
|
Definition at line 588 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(), WorkDistrib::patchMapInit(), ComputeNonbondedUtil::select(), and Node::startup(). |
|
|
Definition at line 611 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(), and ComputeMsmSerialMgr::recvCoord(). |
|
|
Definition at line 591 of file SimParameters.h. |
|
|
Definition at line 617 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(), and Node::startup(). |
|
|
Definition at line 598 of file SimParameters.h. Referenced by ComputeMsmMgr::initialize(), ComputeMsmSerialMgr::recvCoord(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 732 of file SimParameters.h. Referenced by Sequencer::integrate(). |
|
|
|
Definition at line 122 of file SimParameters.h. Referenced by Sequencer::integrate(), and Controller::integrate(). |
|
|
Definition at line 188 of file SimParameters.h. Referenced by ComputeNonbondedCUDA::recvYieldDevice(), scriptSet(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 172 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 171 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 170 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 769 of file SimParameters.h. |
|
|
Definition at line 771 of file SimParameters.h. |
|
|
Definition at line 765 of file SimParameters.h. |
|
|
Definition at line 767 of file SimParameters.h. |
|
|
Definition at line 848 of file SimParameters.h. Referenced by NamdState::configListInit(), and ParallelIOMgr::initialize(). |
|
|
|
Definition at line 856 of file SimParameters.h. Referenced by NamdState::configListInit(), ParallelIOMgr::initialize(), CollectionMaster::startNextRoundOutputForce(), CollectionMaster::startNextRoundOutputPos(), and CollectionMaster::startNextRoundOutputVel(). |
|
|
Definition at line 141 of file SimParameters.h. Referenced by Sequencer::integrate(), and Controller::integrate(). |
|
|
Definition at line 721 of file SimParameters.h. Referenced by ComputeNonbondedCUDA::doWork(), and ComputeNonbondedCUDA::finishWork(). |
|
|
Definition at line 712 of file SimParameters.h. Referenced by Sequencer::integrate(), Controller::printEnergies(), and Controller::printTiming(). |
|
|
Definition at line 203 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), Controller::outputExtendedSystem(), and scriptSet(). |
|
|
Definition at line 149 of file SimParameters.h. Referenced by Node::outputPatchComputeMaps(). |
|
|
Definition at line 715 of file SimParameters.h. Referenced by Controller::printEnergies(). |
|
|
Definition at line 245 of file SimParameters.h. Referenced by Controller::compareChecksums(), and Controller::printEnergies(). |
|
|
Definition at line 777 of file SimParameters.h. Referenced by WorkDistrib::createAtomLists(). |
|
|
Definition at line 724 of file SimParameters.h. Referenced by Controller::printEnergies(). |
|
|
Definition at line 718 of file SimParameters.h. Referenced by Controller::printTiming(). |
|
|
Definition at line 450 of file SimParameters.h. |
|
|
Definition at line 451 of file SimParameters.h. |
|
|
|
Definition at line 452 of file SimParameters.h. Referenced by ComputePme::ComputePme(), NamdState::configListInit(), ComputePmeMgr::initialize(), WorkDistrib::mapComputes(), ComputeNonbondedUtil::select(), Sequencer::submitHalfstep(), and Sequencer::submitReductions(). |
|
|
Definition at line 235 of file SimParameters.h. |
|
|
Definition at line 243 of file SimParameters.h. Referenced by HomePatch::doPairlistCheck(). |
|
|
Definition at line 237 of file SimParameters.h. |
|
|
Definition at line 242 of file SimParameters.h. Referenced by HomePatch::doPairlistCheck(). |
|
|
Definition at line 241 of file SimParameters.h. Referenced by Sequencer::runComputeObjects(). |
|
|
Definition at line 244 of file SimParameters.h. Referenced by HomePatch::doPairlistCheck(). |
|
|
Definition at line 280 of file SimParameters.h. Referenced by ParallelIOMgr::bcastHydroBasedCounter(), NamdState::configListInit(), and Parameters::Parameters(). |
|
|
Definition at line 279 of file SimParameters.h. Referenced by ParallelIOMgr::bcastHydroBasedCounter(), NamdState::configListInit(), and Parameters::Parameters(). |
|
|
Definition at line 218 of file SimParameters.h. Referenced by HomePatch::doMarginCheck(), ComputePmeMgr::initialize(), ComputeMsmMgr::initialize(), OptPmeMgr::initialize_pencils(), ComputePmeMgr::initialize_pencils(), and WorkDistrib::patchMapInit(). |
|
|
Definition at line 634 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 625 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 627 of file SimParameters.h. Referenced by ComputePme::ComputePme(), ComputePmeMgr::initialize(), and initializePmeGrid(). |
|
|
Definition at line 628 of file SimParameters.h. Referenced by ComputePme::ComputePme(), ComputePmeMgr::initialize(), and initializePmeGrid(). |
|
|
Definition at line 629 of file SimParameters.h. Referenced by ComputePme::ComputePme(), ComputePmeMgr::initialize(), and initializePmeGrid(). |
|
|
Definition at line 630 of file SimParameters.h. |
|
|
Definition at line 626 of file SimParameters.h. Referenced by ComputePme::ComputePme(), ComputePmeMgr::initialize(), and initializePmeGrid(). |
|
|
Definition at line 633 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(), and initializePmeGrid(). |
|
|
Definition at line 632 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 623 of file SimParameters.h. Referenced by WorkDistrib::assignNodeToPatch(), ComputeGlobal::ComputeGlobal(), WorkDistrib::mapComputes(), ComputeNonbondedUtil::select(), and Node::startup(). |
|
|
Definition at line 635 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(), initializePmeGrid(), and ComputePmeMgr::isPmeProcessor(). |
|
|
Definition at line 636 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 640 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 637 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 639 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 638 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 631 of file SimParameters.h. Referenced by ComputePmeMgr::initialize(). |
|
|
Definition at line 641 of file SimParameters.h. Referenced by ComputePmeMgr::initialize_pencils(), and PmePencil< CBase_PmeZPencil >::order_init(). |
|
|
Definition at line 624 of file SimParameters.h. |
|
|
|
Definition at line 569 of file SimParameters.h. Referenced by Controller::Controller(), and WorkDistrib::mapComputes(). |
|
|
Definition at line 570 of file SimParameters.h. Referenced by ComputeEwald::ComputeEwald(). |
|
|
Definition at line 571 of file SimParameters.h. Referenced by ComputeEwald::ComputeEwald(). |
|
|
Definition at line 572 of file SimParameters.h. Referenced by ComputeEwald::ComputeEwald(). |
|
|
Definition at line 567 of file SimParameters.h. Referenced by Controller::Controller(), and Controller::printEnergies(). |
|
|
Definition at line 565 of file SimParameters.h. Referenced by ComputeHomeTuples< TholeElem, Thole, TholeValue >::ComputeHomeTuples(), ComputeNonbondedCUDA::ComputeNonbondedCUDA(), Controller::Controller(), ComputeNonbondedUtil::select(), and Sequencer::Sequencer(). |
|
|
|
Definition at line 421 of file SimParameters.h. Referenced by Sequencer::submitMinimizeReductions(). |
|
|
Definition at line 838 of file SimParameters.h. |
|
|
Definition at line 842 of file SimParameters.h. |
|
|
Definition at line 841 of file SimParameters.h. |
|
|
Definition at line 844 of file SimParameters.h. Referenced by Node::startup(). |
|
|
Definition at line 577 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), Controller::Controller(), Sequencer::Sequencer(), and Node::startup(). |
|
|
Definition at line 816 of file SimParameters.h. Referenced by buildExclusions(). |
|
|
Definition at line 531 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), Sequencer::integrate(), Sequencer::reassignVelocities(), and Controller::reassignVelocities(). |
|
|
Definition at line 534 of file SimParameters.h. Referenced by Sequencer::reassignVelocities(), and Controller::reassignVelocities(). |
|
|
Definition at line 533 of file SimParameters.h. Referenced by Sequencer::reassignVelocities(), and Controller::reassignVelocities(). |
|
|
Definition at line 532 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), Sequencer::reassignVelocities(), Controller::reassignVelocities(), and scriptSet(). |
|
|
Definition at line 495 of file SimParameters.h. Referenced by Controller::adaptTempInit(), colvarproxy_namd::colvarproxy_namd(), Sequencer::integrate(), Sequencer::rescaleVelocities(), and Controller::rescaleVelocities(). |
|
|
Definition at line 496 of file SimParameters.h. Referenced by Controller::adaptTempInit(), colvarproxy_namd::colvarproxy_namd(), Sequencer::integrate(), Controller::rescaleVelocities(), and scriptSet(). |
|
|
Definition at line 208 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), and Controller::outputExtendedSystem(). |
|
|
Definition at line 209 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), Output::coordinate(), Output::coordinateNeeded(), Controller::outputExtendedSystem(), Output::velocity(), and Output::velocityNeeded(). |
|
|
Definition at line 211 of file SimParameters.h. Referenced by Controller::outputExtendedSystem(). |
|
|
Definition at line 747 of file SimParameters.h. Referenced by ParallelIOMgr::bcastHydroBasedCounter(), NamdState::configListInit(), WorkDistrib::createAtomLists(), outputCompressedFile(), Sequencer::rattle1(), and Sequencer::rattle2(). |
|
|
Definition at line 752 of file SimParameters.h. Referenced by HomePatch::hardWallDrude(), HomePatch::rattle1(), and HomePatch::rattle2(). |
|
|
Definition at line 751 of file SimParameters.h. Referenced by HomePatch::rattle1(), and HomePatch::rattle2(). |
|
|
Definition at line 750 of file SimParameters.h. Referenced by HomePatch::rattle1(), and HomePatch::rattle2(). |
|
|
Definition at line 300 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 301 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 298 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 302 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 317 of file SimParameters.h. |
|
|
Definition at line 315 of file SimParameters.h. |
|
|
Definition at line 319 of file SimParameters.h. Referenced by Sequencer::addRotDragToPosition(). |
|
|
Definition at line 314 of file SimParameters.h. Referenced by NamdState::configListInit(), Sequencer::integrate(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 318 of file SimParameters.h. |
|
|
Definition at line 320 of file SimParameters.h. |
|
|
Definition at line 186 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 826 of file SimParameters.h. Referenced by Sequencer::algorithm(), Controller::algorithm(), and scriptSet(). |
|
|
Definition at line 827 of file SimParameters.h. Referenced by scriptSet(). |
|
|
Definition at line 828 of file SimParameters.h. Referenced by scriptSet(). |
|
|
Definition at line 829 of file SimParameters.h. Referenced by scriptSet(). |
|
|
Definition at line 830 of file SimParameters.h. Referenced by scriptSet(). |
|
|
Definition at line 265 of file SimParameters.h. Referenced by ComputeRestraints::ComputeRestraints(). |
|
|
Definition at line 152 of file SimParameters.h. Referenced by Node::outputPatchComputeMaps(), and Node::startup(). |
|
|
Definition at line 151 of file SimParameters.h. Referenced by WorkDistrib::assignNodeToPatch(), Node::outputPatchComputeMaps(), WorkDistrib::patchMapInit(), and Node::startup(). |
|
|
Definition at line 150 of file SimParameters.h. Referenced by WorkDistrib::assignNodeToPatch(), Node::outputPatchComputeMaps(), WorkDistrib::patchMapInit(), and Node::startup(). |
|
|
Definition at line 337 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 340 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 338 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 339 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 335 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 341 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 336 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 427 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), HomePatch::gbisComputeAfterP2(), and ComputeNonbondedCUDA::recvYieldDevice(). |
|
|
Definition at line 676 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 677 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 670 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 672 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 667 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 674 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 675 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 669 of file SimParameters.h. Referenced by ComputeSphericalBC::ComputeSphericalBC(). |
|
|
Definition at line 273 of file SimParameters.h. Referenced by ComputeRestraints::doForce(). |
|
|
Definition at line 274 of file SimParameters.h. Referenced by ComputeRestraints::doForce(). |
|
|
Definition at line 740 of file SimParameters.h. |
|
|
Definition at line 778 of file SimParameters.h. Referenced by WorkDistrib::createAtomLists(), WorkDistrib::patchMapInit(), and HomePatch::positionsReady(). |
|
|
Definition at line 758 of file SimParameters.h. Referenced by Sequencer::integrate(), and Controller::integrate(). |
|
|
Definition at line 114 of file SimParameters.h. Referenced by LdbCoordinator::initialize(), Sequencer::integrate(), Controller::integrate(), Sequencer::minimize(), and Sequencer::runComputeObjects(). |
|
|
Definition at line 703 of file SimParameters.h. Referenced by ComputeStir::ComputeStir(), and scriptSet(). |
|
|
Definition at line 698 of file SimParameters.h. |
|
|
Definition at line 702 of file SimParameters.h. Referenced by ComputeStir::doForce(). |
|
|
Definition at line 697 of file SimParameters.h. Referenced by NamdState::configListInit(), WorkDistrib::mapComputes(), Molecule::receive_Molecule(), and Molecule::send_Molecule(). |
|
|
Definition at line 704 of file SimParameters.h. Referenced by ComputeStir::ComputeStir(), and scriptSet(). |
|
|
Definition at line 700 of file SimParameters.h. |
|
|
Definition at line 701 of file SimParameters.h. |
|
|
Definition at line 859 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(), and ComputeMgr::updateLocalComputes4(). |
|
|
Definition at line 574 of file SimParameters.h. Referenced by Controller::Controller(). |
|
|
Definition at line 575 of file SimParameters.h. Referenced by Controller::Controller(). |
|
|
Definition at line 437 of file SimParameters.h. Referenced by ComputeLCPO::ComputeLCPO(). |
|
|
Definition at line 563 of file SimParameters.h. Referenced by Controller::langevinPiston1(), Controller::langevinPiston2(), and scriptSet(). |
|
|
Definition at line 225 of file SimParameters.h. Referenced by ComputeNonbondedSelf::doForce(), ComputeNonbondedPair::doForce(), ComputeNonbondedCUDA::recvYieldDevice(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 229 of file SimParameters.h. Referenced by ComputeNonbondedCUDA::recvYieldDevice(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 365 of file SimParameters.h. |
|
|
Definition at line 367 of file SimParameters.h. Referenced by GlobalMasterSymmetry::GlobalMasterSymmetry(). |
|
|
Definition at line 367 of file SimParameters.h. Referenced by GlobalMasterSymmetry::GlobalMasterSymmetry(). |
|
|
Definition at line 363 of file SimParameters.h. Referenced by GlobalMasterSymmetry::GlobalMasterSymmetry(). |
|
|
Definition at line 364 of file SimParameters.h. |
|
|
Definition at line 367 of file SimParameters.h. Referenced by GlobalMasterSymmetry::GlobalMasterSymmetry(). |
|
|
Definition at line 367 of file SimParameters.h. Referenced by ComputeMgr::createComputes(), and GlobalMasterSymmetry::GlobalMasterSymmetry(). |
|
|
Definition at line 366 of file SimParameters.h. |
|
|
Definition at line 362 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 362 of file SimParameters.h. Referenced by GlobalMasterSymmetry::GlobalMasterSymmetry(). |
|
|
Definition at line 348 of file SimParameters.h. Referenced by Parameters::read_ener_table(). |
|
|
Definition at line 350 of file SimParameters.h. Referenced by Parameters::read_ener_table(). |
|
|
Definition at line 346 of file SimParameters.h. Referenced by Parameters::read_ener_table(). |
|
|
Definition at line 349 of file SimParameters.h. Referenced by Parameters::read_ener_table(). |
|
|
Definition at line 345 of file SimParameters.h. Referenced by Parameters::Parameters(), and ComputeNonbondedUtil::select(). |
|
|
Definition at line 347 of file SimParameters.h. Referenced by Parameters::read_ener_table(). |
|
|
Definition at line 462 of file SimParameters.h. Referenced by ComputeTclBC::doWork(), and scriptSet(). |
|
|
Definition at line 460 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 461 of file SimParameters.h. Referenced by ComputeTclBC::ComputeTclBC(), receive_SimParameters(), and send_SimParameters(). |
|
|
Definition at line 456 of file SimParameters.h. Referenced by ComputeMgr::createComputes(), and Sequencer::integrate(). |
|
|
Definition at line 458 of file SimParameters.h. Referenced by ComputeTclBC::ComputeTclBC(). |
|
|
Definition at line 491 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), NamdState::configListInit(), Molecule::receive_Molecule(), Molecule::send_Molecule(), Sequencer::tcoupleVelocities(), and Controller::tcoupleVelocities(). |
|
|
Definition at line 493 of file SimParameters.h. Referenced by colvarproxy_namd::colvarproxy_namd(), and Controller::tcoupleVelocities(). |
|
|
Definition at line 756 of file SimParameters.h. |
|
|
Definition at line 354 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 356 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 356 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 359 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 358 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 359 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 355 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 358 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 354 of file SimParameters.h. Referenced by ComputeMgr::createComputes(). |
|
|
Definition at line 357 of file SimParameters.h. Referenced by GlobalMasterTMD::GlobalMasterTMD(). |
|
|
Definition at line 760 of file SimParameters.h. |
|
|
Definition at line 140 of file SimParameters.h. Referenced by Sequencer::integrate(), and Controller::integrate(). |
|
|
Definition at line 162 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 163 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 164 of file SimParameters.h. Referenced by WorkDistrib::patchMapInit(). |
|
|
Definition at line 789 of file SimParameters.h. |
|
|
|
Definition at line 832 of file SimParameters.h. Referenced by NamdState::configListInit(), and Molecule::Molecule(). |
|
|
Definition at line 542 of file SimParameters.h. Referenced by Controller::langevinPiston1(), and scriptSet(). |
|
|
Definition at line 543 of file SimParameters.h. Referenced by Controller::Controller(), Controller::langevinPiston1(), Controller::langevinPiston2(), Controller::receivePressure(), and scriptSet(). |
|
|
Definition at line 643 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(). |
|
|
Definition at line 541 of file SimParameters.h. Referenced by Controller::Controller(), Controller::langevinPiston1(), Controller::langevinPiston2(), Controller::receivePressure(), and scriptSet(). |
|
|
Definition at line 536 of file SimParameters.h. Referenced by Sequencer::berendsenPressure(), Sequencer::langevinPiston(), Controller::receivePressure(), scriptSet(), Sequencer::submitHalfstep(), and Sequencer::submitReductions(). |
|
|
Definition at line 645 of file SimParameters.h. Referenced by OptPmeMgr::initialize(). |
|
|
Definition at line 644 of file SimParameters.h. Referenced by WorkDistrib::mapComputes(), and Node::startup(). |
|
|
Definition at line 239 of file SimParameters.h. Referenced by Sequencer::runComputeObjects(), and SELF(). |
|
|
Definition at line 835 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 754 of file SimParameters.h. Referenced by HomePatch::rattle1(), and HomePatch::rattle2(). |
|
|
Definition at line 227 of file SimParameters.h. Referenced by ComputeNonbondedUtil::select(). |
|
|
Definition at line 823 of file SimParameters.h. |
|
|
Definition at line 817 of file SimParameters.h. Referenced by NamdState::configListInit(). |
|
|
Definition at line 200 of file SimParameters.h. |
|
|
Definition at line 192 of file SimParameters.h. Referenced by Output::velocity(), and Output::velocityNeeded(). |
|
|
Definition at line 109 of file SimParameters.h. Referenced by Molecule::num_deg_freedom(), HomePatch::rattle1(), HomePatch::rattle2(), and Sequencer::runComputeObjects(). |
|
|
Definition at line 181 of file SimParameters.h. Referenced by ParallelIOMgr::integrateClusterSize(), ParallelIOMgr::readPerAtomInfo(), ParallelIOMgr::recvFinalClusterCoor(), and wrap_coor_int(). |
|
|
Definition at line 182 of file SimParameters.h. Referenced by ParallelIOMgr::recvFinalClusterCoor(), and wrap_coor_int(). |
|
|
Definition at line 180 of file SimParameters.h. Referenced by ParallelIOMgr::integrateClusterSize(), ParallelIOMgr::readPerAtomInfo(), and wrap_coor_int(). |
|
|
Definition at line 202 of file SimParameters.h. Referenced by Controller::outputExtendedSystem(). |
|
|
Definition at line 196 of file SimParameters.h. Referenced by Controller::outputExtendedSystem(). |
|
|
Definition at line 178 of file SimParameters.h. Referenced by Sequencer::integrate(), and Controller::integrate(). |
|
|
Definition at line 179 of file SimParameters.h. Referenced by Sequencer::correctMomentum(), and Sequencer::submitMomentum(). |
1.3.9.1