| # | Line 5 | Line 5 | |
|---|---|---|
| 5 | #include "Thermo.hpp" | |
| 6 | #include "ExtendedSystem.hpp" | |
| 7 | ||
| 8 | < | ExtendedSystem::ExtendedSystem( SimInfo &info ) { | 
| 8 | > | ExtendedSystem::ExtendedSystem( SimInfo* the_entry_plug ) { | 
| 9 | ||
| 10 | // get what information we need from the SimInfo object | |
| 11 | ||
| 12 | < | entry_plug = &info; | 
| 12 | > | entry_plug = the_entry_plug; | 
| 13 | nAtoms = entry_plug->n_atoms; | |
| 14 | atoms = entry_plug->atoms; | |
| 15 | nMols = entry_plug->n_mol; | |
| – | Removed lines | 
| + | Added lines | 
| < | Changed lines | 
| > | Changed lines |