Changes in src/ThermoStatContainer.cpp [ad7270:14c57a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ThermoStatContainer.cpp
rad7270 r14c57a 1 /*2 * Project: MoleCuilder3 * Description: creates and alters molecular systems4 * 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 8 1 /* 9 2 * ThermoStatContainer.cpp … … 54 47 ThermostatTraits<Thermostat> *WoodcockTrait = new ThermostatTraits<Woodcock>(); 55 48 availThermostats[WoodcockTrait->getName()] = WoodcockTrait; 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 49 for(traitsMap::iterator iter = availThermostats.begin();iter!=availThermostats.end();++iter){ 50 cout << iter->first << endl; 51 } 64 52 ASSERT(availThermostats.size()==6,"Not all implemented thermostats referenced!\nDid you check the names in the traits?"); 65 53 activeThermostat=new Berendsen();
Note:
See TracChangeset
for help on using the changeset viewer.