Changes in src/ThermoStatContainer.cpp [14c57a:ad7270]
- 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 1 8 /* 2 9 * ThermoStatContainer.cpp … … 47 54 ThermostatTraits<Thermostat> *WoodcockTrait = new ThermostatTraits<Woodcock>(); 48 55 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 52 64 ASSERT(availThermostats.size()==6,"Not all implemented thermostats referenced!\nDid you check the names in the traits?"); 53 65 activeThermostat=new Berendsen();
Note:
See TracChangeset
for help on using the changeset viewer.