Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ThermoStatContainer.cpp

    r14c57a rad7270  
     1/*
     2 * Project: MoleCuilder
     3 * Description: creates and alters molecular systems
     4 * Copyright (C)  2010 University of Bonn. All rights reserved.
     5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
     6 */
     7
    18/*
    29 * ThermoStatContainer.cpp
     
    4754  ThermostatTraits<Thermostat> *WoodcockTrait = new ThermostatTraits<Woodcock>();
    4855  availThermostats[WoodcockTrait->getName()] = WoodcockTrait;
    49   for(traitsMap::iterator iter = availThermostats.begin();iter!=availThermostats.end();++iter){
    50     cout << iter->first << endl;
    51   }
     56
     57  // for debugging: list all thermostats
     58//  cout << "List of known thermostats: ";
     59//  for(traitsMap::iterator iter = availThermostats.begin();iter!=availThermostats.end();++iter){
     60//    cout << iter->first << " ";
     61//  }
     62//  cout << endl;
     63
    5264  ASSERT(availThermostats.size()==6,"Not all implemented thermostats referenced!\nDid you check the names in the traits?");
    5365  activeThermostat=new Berendsen();
Note: See TracChangeset for help on using the changeset viewer.