Ignore:
Timestamp:
Jul 23, 2009, 1:45:24 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
47548d
Parents:
560995 (diff), 1b2aa1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Frederik Heber <heber@…> (07/23/09 12:34:47)
git-committer:
Frederik Heber <heber@…> (07/23/09 13:45:24)
Message:

Merge branch 'MultipleMolecules'

Conflicts:

molecuilder/src/analyzer.cpp
molecuilder/src/atom.cpp
molecuilder/src/boundary.cpp
molecuilder/src/boundary.hpp
molecuilder/src/builder.cpp
molecuilder/src/config.cpp
molecuilder/src/datacreator.hpp
molecuilder/src/helpers.cpp
molecuilder/src/joiner.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/molecules.cpp
molecuilder/src/molecules.hpp
molecuilder/src/parser.cpp
molecuilder/src/parser.hpp
molecuilder/src/vector.cpp
molecuilder/src/verbose.cpp

merges:

compilation fixes:

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/joiner.cpp

    r560995 rf39735  
    22 *
    33 * Takes evaluated fragments (energy and forces) and by reading the factors files determines total energy
    4  * and each force for the whole molecule. 
    5  *   
     4 * and each force for the whole molecule.
     5 *
    66 */
    77
    88//============================ INCLUDES ===========================
    99
    10 #include "datacreator.hpp" 
    11 #include "helpers.hpp" 
    12 #include "parser.hpp" 
    13 #include "periodentafel.hpp" 
     10#include "datacreator.hpp"
     11#include "helpers.hpp"
     12#include "parser.hpp"
     13#include "periodentafel.hpp"
    1414
    1515//============================== MAIN =============================
     
    4646  cout << "Joiner" << endl;
    4747  cout << "======" << endl;
    48  
     48
    4949  // Get the command line options
    5050  if (argc < 3) {
     
    6363    periode->LoadPeriodentafel(argv[3]);
    6464  }
    65  
     65
    6666  // Test the given directory
    6767  if (!TestParams(argc, argv))
    6868    return 1;
    69  
     69
    7070  // +++++++++++++++++ PARSING +++++++++++++++++++++++++++++++
    71  
     71
    7272  // ------------- Parse through all Fragment subdirs --------
    7373  if (!Energy.ParseFragmentMatrix(argv[1], dir, EnergySuffix, 0,0)) return 1;
     
    124124    if (!ChiPASFragments.AllocateMatrix(ChiPAS.Header, ChiPAS.MatrixCounter, ChiPAS.RowCounter, ChiPAS.ColumnCounter)) return 1;
    125125  }
    126  
     126
    127127  // ----------- Resetting last matrices (where full QM values are stored right now)
    128128  if(!Energy.SetLastMatrix(0., 0)) return 1;
     
    237237  }
    238238
    239   // exit 
     239  // exit
    240240  delete(periode);
    241241  Free((void **)&dir, "main: *dir");
Note: See TracChangeset for help on using the changeset viewer.