LCOV - code coverage report
Current view: top level - isdb - Rescale.cpp (source / functions) Hit Total Coverage
Test: plumed test coverage Lines: 20 185 10.8 %
Date: 2024-10-18 14:00:25 Functions: 1 12 8.3 %

          Line data    Source code
       1             : /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
       2             :    Copyright (c) 2017-2023 The plumed team
       3             :    (see the PEOPLE file at the root of the distribution for a list of names)
       4             : 
       5             :    See http://www.plumed.org for more information.
       6             : 
       7             :    This file is part of plumed, version 2.
       8             : 
       9             :    plumed is free software: you can redistribute it and/or modify
      10             :    it under the terms of the GNU Lesser General Public License as published by
      11             :    the Free Software Foundation, either version 3 of the License, or
      12             :    (at your option) any later version.
      13             : 
      14             :    plumed is distributed in the hope that it will be useful,
      15             :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      16             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      17             :    GNU Lesser General Public License for more details.
      18             : 
      19             :    You should have received a copy of the GNU Lesser General Public License
      20             :    along with plumed.  If not, see <http://www.gnu.org/licenses/>.
      21             : +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
      22             : /*
      23             : 
      24             : */
      25             : #include "bias/Bias.h"
      26             : #include "core/ActionRegister.h"
      27             : #include "core/PlumedMain.h"
      28             : #include "core/Value.h"
      29             : #include "tools/File.h"
      30             : #include "tools/Random.h"
      31             : #include "tools/Communicator.h"
      32             : #include <ctime>
      33             : 
      34             : namespace PLMD {
      35             : namespace isdb {
      36             : 
      37             : //+PLUMEDOC ISDB_BIAS RESCALE
      38             : /*
      39             : Scales the value of an another action, being a Collective Variable or a Bias.
      40             : 
      41             : The rescaling factor is determined by a parameter defined on a logarithmic grid of dimension NBIN in the range
      42             : from 1 to MAX_RESCALE. The current value of the rescaling parameter is stored and shared across
      43             : other actions using a \ref SELECTOR. A Monte Carlo procedure is used to update the value
      44             : of the rescaling factor every MC_STRIDE steps of molecular dynamics. Well-tempered metadynamics, defined by the
      45             : parameters W0 and BIASFACTOR, is used to enhance the sampling in the space of the rescaling factor.
      46             : The well-tempered metadynamics bias potential is written to the file BFILE every BSTRIDE steps and read
      47             : when restarting the simulation using the directive \ref RESTART.
      48             : 
      49             : \note
      50             : Additional arguments not to be scaled, one for each bin in the rescaling parameter ladder, can be
      51             : provided at the end of the ARG list. The number of such arguments is specified by the option NOT_RESCALED.
      52             : These arguments will be not be scaled, but they will be
      53             : considered as bias potentials and used in the computation of the Metropolis
      54             : acceptance probability when proposing a move in the rescaling parameter. See example below.
      55             : 
      56             : \note
      57             : If PLUMED is running in a multiple-replica framework (for example using the -multi option in GROMACS),
      58             : the arguments will be summed across replicas, unless the NOT_SHARED option is used. Also, the value of the
      59             : \ref SELECTOR will be shared and thus will be the same in all replicas.
      60             : 
      61             : \par Examples
      62             : 
      63             : In this example we use \ref RESCALE to implement a simulated-tempering like approach.
      64             : The total potential energy of the system is scaled by a parameter defined on a logarithmic grid
      65             : of 5 bins in the range from 1 to 1.5.
      66             : A well-tempered metadynamics bias potential is used to ensure diffusion in the space of the rescaling
      67             : parameter.
      68             : 
      69             : \plumedfile
      70             : ene: ENERGY
      71             : 
      72             : SELECTOR NAME=GAMMA VALUE=0
      73             : 
      74             : RESCALE ...
      75             : LABEL=res ARG=ene TEMP=300
      76             : SELECTOR=GAMMA MAX_RESCALE=1.5 NBIN=5
      77             : W0=1000 BIASFACTOR=100.0 BSTRIDE=2000 BFILE=bias.dat
      78             : ...
      79             : 
      80             : PRINT FILE=COLVAR ARG=* STRIDE=100
      81             : \endplumedfile
      82             : 
      83             : In this second example, we add to the simulated-tempering approach introduced above
      84             : one Parallel Bias metadynamics simulation (see \ref PBMETAD) for each value of the rescaling parameter.
      85             : At each moment of the simulation, only one of the \ref PBMETAD
      86             : actions is activated, based on the current value of the associated \ref SELECTOR.
      87             : The \ref PBMETAD bias potentials are not scaled, but just used in the calculation of
      88             : the Metropolis acceptance probability when proposing a move in the rescaling parameter.
      89             : 
      90             : \plumedfile
      91             : ene: ENERGY
      92             : d: DISTANCE ATOMS=1,2
      93             : 
      94             : SELECTOR NAME=GAMMA VALUE=0
      95             : 
      96             : pbmetad0: PBMETAD ARG=d SELECTOR=GAMMA SELECTOR_ID=0 SIGMA=0.1 PACE=500 HEIGHT=1 BIASFACTOR=8 FILE=HILLS.0
      97             : pbmetad1: PBMETAD ARG=d SELECTOR=GAMMA SELECTOR_ID=1 SIGMA=0.1 PACE=500 HEIGHT=1 BIASFACTOR=8 FILE=HILLS.1
      98             : pbmetad2: PBMETAD ARG=d SELECTOR=GAMMA SELECTOR_ID=2 SIGMA=0.1 PACE=500 HEIGHT=1 BIASFACTOR=8 FILE=HILLS.2
      99             : pbmetad3: PBMETAD ARG=d SELECTOR=GAMMA SELECTOR_ID=3 SIGMA=0.1 PACE=500 HEIGHT=1 BIASFACTOR=8 FILE=HILLS.3
     100             : pbmetad4: PBMETAD ARG=d SELECTOR=GAMMA SELECTOR_ID=4 SIGMA=0.1 PACE=500 HEIGHT=1 BIASFACTOR=8 FILE=HILLS.4
     101             : 
     102             : RESCALE ...
     103             : LABEL=res TEMP=300
     104             : ARG=ene,pbmetad0.bias,pbmetad1.bias,pbmetad2.bias,pbmetad3.bias,pbmetad4.bias
     105             : SELECTOR=GAMMA MAX_RESCALE=1.5 NOT_RESCALED=5 NBIN=5
     106             : W0=1000 BIASFACTOR=100.0 BSTRIDE=2000 BFILE=bias.dat
     107             : ...
     108             : 
     109             : PRINT FILE=COLVAR ARG=* STRIDE=100
     110             : \endplumedfile
     111             : 
     112             : 
     113             : 
     114             : */
     115             : //+ENDPLUMEDOC
     116             : 
     117             : class Rescale : public bias::Bias
     118             : {
     119             :   // gamma parameter
     120             :   std::vector<double> gamma_;
     121             :   double         w0_;
     122             :   double         biasf_;
     123             :   std::vector<double> bias_;
     124             :   std::vector<double> expo_;
     125             :   std::vector<unsigned> shared_;
     126             :   unsigned nores_;
     127             :   // bias
     128             :   unsigned int   Biasstride_;
     129             :   unsigned int   Biaspace_;
     130             :   std::string         Biasfilename_;
     131             :   bool           first_bias_;
     132             :   OFile          Biasfile_;
     133             :   // temperature in kbt
     134             :   double kbt_;
     135             :   // Monte Carlo stuff
     136             :   unsigned MCsteps_;
     137             :   unsigned MCstride_;
     138             :   long long int MCfirst_;
     139             :   long long unsigned MCaccgamma_;
     140             :   // replica stuff
     141             :   unsigned nrep_;
     142             :   unsigned replica_;
     143             :   // selector
     144             :   std::string selector_;
     145             : 
     146             :   // Monte Carlo
     147             :   void doMonteCarlo(unsigned igamma, double oldE, const std::vector<double> & args, const std::vector<double> & bargs);
     148             :   unsigned proposeMove(unsigned x, unsigned xmin, unsigned xmax);
     149             :   bool doAccept(double oldE, double newE);
     150             :   // read and print bias
     151             :   void read_bias();
     152             :   void print_bias(long long int step);
     153             : 
     154             : public:
     155             :   explicit Rescale(const ActionOptions&);
     156             :   ~Rescale();
     157             :   void calculate();
     158             :   static void registerKeywords(Keywords& keys);
     159             : };
     160             : 
     161             : 
     162             : PLUMED_REGISTER_ACTION(Rescale,"RESCALE")
     163             : 
     164           2 : void Rescale::registerKeywords(Keywords& keys) {
     165           2 :   Bias::registerKeywords(keys);
     166           2 :   keys.use("ARG");
     167           4 :   keys.add("compulsory","TEMP","temperature");
     168           4 :   keys.add("compulsory","SELECTOR", "name of the SELECTOR used for rescaling");
     169           4 :   keys.add("compulsory","MAX_RESCALE","maximum values for rescaling");
     170           4 :   keys.add("compulsory","NBIN","number of bins for gamma grid");
     171           4 :   keys.add("compulsory","W0", "initial bias height");
     172           4 :   keys.add("compulsory","BIASFACTOR", "bias factor");
     173           4 :   keys.add("compulsory","BSTRIDE", "stride for writing bias");
     174           4 :   keys.add("compulsory","BFILE", "file name for bias");
     175           4 :   keys.add("optional","NOT_SHARED",   "list of arguments (from 1 to N) not summed across replicas");
     176           4 :   keys.add("optional","NOT_RESCALED", "these last N arguments will not be scaled");
     177           4 :   keys.add("optional","MC_STEPS","number of MC steps");
     178           4 :   keys.add("optional","MC_STRIDE","MC stride");
     179           4 :   keys.add("optional","PACE", "Pace for adding bias, in MC stride unit");
     180           4 :   keys.addOutputComponent("igamma",  "default","gamma parameter");
     181           4 :   keys.addOutputComponent("accgamma","default","MC acceptance for gamma");
     182           4 :   keys.addOutputComponent("wtbias",  "default","well-tempered bias");
     183           2 : }
     184             : 
     185           0 : Rescale::Rescale(const ActionOptions&ao):
     186             :   PLUMED_BIAS_INIT(ao),
     187           0 :   nores_(0), Biaspace_(1), first_bias_(true),
     188           0 :   MCsteps_(1), MCstride_(1), MCfirst_(-1), MCaccgamma_(0)
     189             : {
     190             :   // set up replica stuff
     191           0 :   if(comm.Get_rank()==0) {
     192           0 :     nrep_    = multi_sim_comm.Get_size();
     193           0 :     replica_ = multi_sim_comm.Get_rank();
     194             :   } else {
     195           0 :     nrep_    = 0;
     196           0 :     replica_ = 0;
     197             :   }
     198           0 :   comm.Sum(&nrep_,1);
     199           0 :   comm.Sum(&replica_,1);
     200             : 
     201             :   // wt-parameters
     202           0 :   parse("W0", w0_);
     203           0 :   parse("BIASFACTOR", biasf_);
     204             : 
     205             :   // selector name
     206           0 :   parse("SELECTOR", selector_);
     207             : 
     208             :   // number of bins for gamma ladder
     209             :   unsigned nbin;
     210           0 :   parse("NBIN", nbin);
     211             : 
     212             :   // number of bias
     213           0 :   parse("NOT_RESCALED", nores_);
     214           0 :   if(nores_>0 && nores_!=nbin) error("The number of non scaled arguments must be equal to either 0 or the number of bins");
     215             : 
     216             :   // maximum value of rescale
     217             :   std::vector<double> max_rescale;
     218           0 :   parseVector("MAX_RESCALE", max_rescale);
     219             :   // check dimension of max_rescale
     220           0 :   if(max_rescale.size()!=(getNumberOfArguments()-nores_))
     221           0 :     error("Size of MAX_RESCALE array must be equal to the number of arguments that will to be scaled");
     222             : 
     223             :   // calculate exponents
     224           0 :   double igamma_max = static_cast<double>(nbin);
     225           0 :   for(unsigned i=0; i<max_rescale.size(); ++i)
     226           0 :     expo_.push_back(std::log(max_rescale[i])/std::log(igamma_max));
     227             : 
     228             :   // allocate gamma grid and set bias to zero
     229           0 :   for(unsigned i=0; i<nbin; ++i) {
     230             :     // bias grid
     231           0 :     bias_.push_back(0.0);
     232             :     // gamma ladder
     233           0 :     double gamma = std::exp( static_cast<double>(i) / static_cast<double>(nbin-1) * std::log(igamma_max) );
     234           0 :     gamma_.push_back(gamma);
     235             :   }
     236             :   // print bias to file
     237           0 :   parse("BSTRIDE", Biasstride_);
     238           0 :   parse("BFILE",   Biasfilename_);
     239             : 
     240             :   // create vectors of shared arguments
     241             :   // by default they are all shared
     242           0 :   for(unsigned i=0; i<getNumberOfArguments(); ++i) shared_.push_back(1);
     243             :   // share across replicas or not
     244             :   std::vector<unsigned> not_shared;
     245           0 :   parseVector("NOT_SHARED", not_shared);
     246             :   // and change the non-shared
     247           0 :   for(unsigned i=0; i<not_shared.size(); ++i) {
     248           0 :     if((not_shared[i]-1)>=(getNumberOfArguments()-nores_) && nrep_>1)
     249           0 :       error("NOT_RESCALED args must always be shared when using multiple replicas");
     250           0 :     if((not_shared[i]-1)>=getNumberOfArguments())
     251           0 :       error("NOT_SHARED args should be lower than total number of arguments");
     252           0 :     shared_[not_shared[i]-1] = 0;
     253             :   }
     254             : 
     255             :   // monte carlo stuff
     256           0 :   parse("MC_STEPS",MCsteps_);
     257           0 :   parse("MC_STRIDE",MCstride_);
     258             :   // adjust for multiple-time steps
     259           0 :   MCstride_ *= getStride();
     260             :   // read bias deposition pace
     261           0 :   parse("PACE", Biaspace_);
     262             :   // multiply by MCstride
     263           0 :   Biaspace_ *= MCstride_;
     264             : 
     265             :   // get temperature
     266           0 :   kbt_=getkBT();
     267             : 
     268           0 :   checkRead();
     269             : 
     270           0 :   log.printf("  temperature of the system in energy unit %f\n",kbt_);
     271           0 :   log.printf("  name of the SELECTOR use for this action %s\n",selector_.c_str());
     272           0 :   log.printf("  number of bins in grid %u\n",nbin);
     273           0 :   log.printf("  number of arguments that will not be scaled %u\n",nores_);
     274           0 :   if(nrep_>1) log<<"  number of arguments that will not be summed across replicas "<<not_shared.size()<<"\n";
     275           0 :   log.printf("  biasfactor %f\n",biasf_);
     276           0 :   log.printf("  initial hills height %f\n",w0_);
     277           0 :   log.printf("  stride to write bias to file %u\n",Biasstride_);
     278           0 :   log.printf("  write bias to file : %s\n",Biasfilename_.c_str());
     279           0 :   log.printf("  number of replicas %u\n",nrep_);
     280           0 :   log.printf("  number of MC steps %d\n",MCsteps_);
     281           0 :   log.printf("  do MC every %d steps\n", MCstride_);
     282           0 :   log.printf("\n");
     283             : 
     284           0 :   log << " Bibliography" << plumed.cite("Bonomi, Camilloni, Bioinformatics, 33, 3999 (2017)") << "\n";
     285             : 
     286             : 
     287             :   // add components
     288           0 :   addComponent("igamma");   componentIsNotPeriodic("igamma");
     289           0 :   addComponent("accgamma"); componentIsNotPeriodic("accgamma");
     290           0 :   addComponent("wtbias");   componentIsNotPeriodic("wtbias");
     291             : 
     292             :   // initialize random seed
     293           0 :   srand (time(NULL));
     294             : 
     295             :   // read bias if restarting
     296           0 :   if(getRestart()) read_bias();
     297           0 : }
     298             : 
     299           0 : Rescale::~Rescale()
     300             : {
     301           0 :   Biasfile_.close();
     302           0 : }
     303             : 
     304           0 : void Rescale::read_bias()
     305             : {
     306             : // open file
     307             :   auto ifile=Tools::make_unique<IFile>();
     308           0 :   ifile->link(*this);
     309           0 :   if(ifile->FileExist(Biasfilename_)) {
     310           0 :     ifile->open(Biasfilename_);
     311             :     // read all the lines, store last value of bias
     312             :     double MDtime;
     313           0 :     while(ifile->scanField("MD_time",MDtime)) {
     314           0 :       for(unsigned i=0; i<bias_.size(); ++i) {
     315             :         // convert i to string
     316           0 :         std::stringstream ss;
     317             :         ss << i;
     318             :         // label
     319           0 :         std::string label = "b" + ss.str();
     320             :         // read entry
     321           0 :         ifile->scanField(label, bias_[i]);
     322           0 :       }
     323             :       // new line
     324           0 :       ifile->scanField();
     325             :     }
     326           0 :     ifile->close();
     327             :   } else {
     328           0 :     error("Cannot find bias file "+Biasfilename_+"\n");
     329             :   }
     330           0 : }
     331             : 
     332           0 : unsigned Rescale::proposeMove(unsigned x, unsigned xmin, unsigned xmax)
     333             : {
     334           0 :   int xmin_i = static_cast<int>(xmin);
     335           0 :   int xmax_i = static_cast<int>(xmax);
     336             :   int dx;
     337           0 :   int r = rand() % 2;
     338           0 :   if( r % 2 == 0 ) dx = +1;
     339             :   else             dx = -1;
     340             : // new index, integer
     341           0 :   int x_new = static_cast<int>(x) + dx;
     342             : // check boundaries
     343           0 :   if(x_new >= xmax_i) x_new = xmax_i-1;
     344             :   if(x_new <  xmin_i) x_new = xmin_i;
     345           0 :   return static_cast<unsigned>(x_new);
     346             : }
     347             : 
     348           0 : bool Rescale::doAccept(double oldE, double newE)
     349             : {
     350             :   bool accept = false;
     351             :   // calculate delta energy
     352           0 :   double delta = ( newE - oldE ) / kbt_;
     353             :   // if delta is negative always accept move
     354           0 :   if( delta < 0.0 ) {
     355             :     accept = true;
     356             :   } else {
     357             :     // otherwise extract random number
     358           0 :     double s = static_cast<double>(rand()) / RAND_MAX;
     359           0 :     if( s < std::exp(-delta) ) { accept = true; }
     360             :   }
     361           0 :   return accept;
     362             : }
     363             : 
     364           0 : void Rescale::doMonteCarlo(unsigned igamma, double oldE,
     365             :                            const std::vector<double> & args, const std::vector<double> & bargs)
     366             : {
     367             :   double oldB, newB;
     368             : 
     369             : // cycle on MC steps
     370           0 :   for(unsigned i=0; i<MCsteps_; ++i) {
     371             :     // propose move in igamma
     372           0 :     unsigned new_igamma = proposeMove(igamma, 0, gamma_.size());
     373             :     // calculate new energy
     374             :     double newE = 0.0;
     375           0 :     for(unsigned j=0; j<args.size(); ++j) {
     376             :       // calculate energy term
     377           0 :       double fact = 1.0/pow(gamma_[new_igamma], expo_[j]) - 1.0;
     378           0 :       newE += args[j] * fact;
     379             :     }
     380             :     // calculate contributions from non-rescaled terms
     381           0 :     if(bargs.size()>0) {
     382           0 :       oldB = bias_[igamma]+bargs[igamma];
     383           0 :       newB = bias_[new_igamma]+bargs[new_igamma];
     384             :     } else {
     385           0 :       oldB = bias_[igamma];
     386           0 :       newB = bias_[new_igamma];
     387             :     }
     388             :     // accept or reject
     389           0 :     bool accept = doAccept(oldE+oldB, newE+newB);
     390           0 :     if(accept) {
     391           0 :       igamma = new_igamma;
     392             :       oldE = newE;
     393           0 :       MCaccgamma_++;
     394             :     }
     395             :   }
     396             : // send values of gamma to all replicas
     397           0 :   if(comm.Get_rank()==0) {
     398           0 :     if(multi_sim_comm.Get_rank()!=0) igamma = 0;
     399           0 :     multi_sim_comm.Sum(&igamma, 1);
     400             :   } else {
     401           0 :     igamma = 0;
     402             :   }
     403             : // local communication
     404           0 :   comm.Sum(&igamma, 1);
     405             : 
     406             : // set the value of gamma into passMap
     407           0 :   plumed.passMap[selector_]=static_cast<double>(igamma);
     408           0 : }
     409             : 
     410           0 : void Rescale::print_bias(long long int step)
     411             : {
     412             : // if first time open the file
     413           0 :   if(first_bias_) {
     414           0 :     first_bias_ = false;
     415           0 :     Biasfile_.link(*this);
     416           0 :     Biasfile_.open(Biasfilename_);
     417             :     Biasfile_.setHeavyFlush();
     418           0 :     Biasfile_.fmtField("%30.5f");
     419             :   }
     420             : 
     421             : // write fields
     422           0 :   double MDtime = static_cast<double>(step)*getTimeStep();
     423           0 :   Biasfile_.printField("MD_time", MDtime);
     424           0 :   for(unsigned i=0; i<bias_.size(); ++i) {
     425             :     // convert i to string
     426           0 :     std::stringstream ss;
     427             :     ss << i;
     428             :     // label
     429           0 :     std::string label = "b" + ss.str();
     430             :     // print entry
     431           0 :     Biasfile_.printField(label, bias_[i]);
     432           0 :   }
     433           0 :   Biasfile_.printField();
     434           0 : }
     435             : 
     436           0 : void Rescale::calculate()
     437             : {
     438             :   // get the current value of the selector
     439           0 :   unsigned igamma = static_cast<unsigned>(plumed.passMap[selector_]);
     440             : 
     441             :   // collect data from other replicas
     442           0 :   std::vector<double> all_args(getNumberOfArguments(), 0.0);
     443             :   // first calculate arguments
     444           0 :   for(unsigned i=0; i<all_args.size(); ++i) {
     445           0 :     double arg = getArgument(i);
     446             :     // sum shared arguments across replicas
     447           0 :     if(shared_[i]==1) {
     448           0 :       if(comm.Get_rank()==0) multi_sim_comm.Sum(arg);
     449           0 :       else                   arg = 0.0;
     450           0 :       if(comm.Get_size()>1)  comm.Sum(arg);
     451             :     }
     452             :     // put into all_args
     453           0 :     all_args[i] = arg;
     454             :   }
     455             : 
     456             :   // now separate terms that should be rescaled
     457             :   std::vector<double> args;
     458           0 :   if(getNumberOfArguments()-nores_>0) args.resize(getNumberOfArguments()-nores_);
     459           0 :   for(unsigned i=0; i<args.size(); ++i)  args[i]  = all_args[i];
     460             :   // and terms that should not
     461             :   std::vector<double> bargs;
     462           0 :   if(nores_>0) bargs.resize(nores_);
     463           0 :   for(unsigned i=0; i<bargs.size(); ++i) bargs[i] = all_args[i+args.size()];
     464             : 
     465             :   // calculate energy and forces, only on rescaled terms
     466             :   double ene = 0.0;
     467           0 :   for(unsigned i=0; i<args.size(); ++i) {
     468             :     // calculate energy term
     469           0 :     double fact = 1.0/pow(gamma_[igamma], expo_[i]) - 1.0;
     470           0 :     ene += args[i] * fact;
     471             :     // add force
     472           0 :     setOutputForce(i, -fact);
     473             :   }
     474             : 
     475             :   // set to zero on the others
     476           0 :   for(unsigned i=0; i<bargs.size(); ++i) setOutputForce(i+args.size(), 0.0);
     477             : 
     478             :   // set value of the bias
     479           0 :   setBias(ene);
     480             :   // set value of the wt-bias
     481           0 :   getPntrToComponent("wtbias")->set(bias_[igamma]);
     482             :   // set values of gamma
     483           0 :   getPntrToComponent("igamma")->set(igamma);
     484             :   // get time step
     485           0 :   long long int step = getStep();
     486           0 :   if(MCfirst_==-1) MCfirst_=step;
     487             :   // calculate gamma acceptance
     488           0 :   double MCtrials = std::floor(static_cast<double>(step-MCfirst_) / static_cast<double>(MCstride_))+1.0;
     489           0 :   double accgamma = static_cast<double>(MCaccgamma_) / static_cast<double>(MCsteps_) / MCtrials;
     490           0 :   getPntrToComponent("accgamma")->set(accgamma);
     491             : 
     492             :   // do MC at the right time step
     493           0 :   if(step%MCstride_==0&&!getExchangeStep()) doMonteCarlo(igamma, ene, args, bargs);
     494             : 
     495             :   // add well-tempered like bias
     496           0 :   if(step%Biaspace_==0) {
     497             :     // get updated igamma
     498           0 :     unsigned igamma = static_cast<unsigned>(plumed.passMap[selector_]);
     499             :     // add "Gaussian"
     500           0 :     double kbDT = kbt_ * ( biasf_ - 1.0 );
     501           0 :     bias_[igamma] += w0_ * std::exp(-bias_[igamma] / kbDT);
     502             :   }
     503             : 
     504             :   // print bias
     505           0 :   if(step%Biasstride_==0) print_bias(step);
     506             : 
     507           0 : }
     508             : 
     509             : 
     510             : }
     511             : }
     512             : 

Generated by: LCOV version 1.16