ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/applications/oopse/oopse.cpp
(Generate patch)

Comparing trunk/OOPSE-4/src/applications/oopse/oopse.cpp (file contents):
Revision 1501 by tim, Tue Sep 28 23:24:25 2004 UTC vs.
Revision 2364 by tim, Thu Oct 13 22:26:47 2005 UTC

# Line 1 | Line 1
1 < #include <iostream>
2 < #include <fstream>
3 < #include <cstdlib>
4 < #include <cmath>
5 < #include <cstring>
6 <
1 > /*
2 > * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved.
3 > *
4 > * The University of Notre Dame grants you ("Licensee") a
5 > * non-exclusive, royalty free, license to use, modify and
6 > * redistribute this software in source and binary code form, provided
7 > * that the following conditions are met:
8 > *
9 > * 1. Acknowledgement of the program authors must be made in any
10 > *    publication of scientific results based in part on use of the
11 > *    program.  An acceptable form of acknowledgement is citation of
12 > *    the article in which the program was described (Matthew
13 > *    A. Meineke, Charles F. Vardeman II, Teng Lin, Christopher
14 > *    J. Fennell and J. Daniel Gezelter, "OOPSE: An Object-Oriented
15 > *    Parallel Simulation Engine for Molecular Dynamics,"
16 > *    J. Comput. Chem. 26, pp. 252-271 (2005))
17 > *
18 > * 2. Redistributions of source code must retain the above copyright
19 > *    notice, this list of conditions and the following disclaimer.
20 > *
21 > * 3. Redistributions in binary form must reproduce the above copyright
22 > *    notice, this list of conditions and the following disclaimer in the
23 > *    documentation and/or other materials provided with the
24 > *    distribution.
25 > *
26 > * This software is provided "AS IS," without a warranty of any
27 > * kind. All express or implied conditions, representations and
28 > * warranties, including any implied warranty of merchantability,
29 > * fitness for a particular purpose or non-infringement, are hereby
30 > * excluded.  The University of Notre Dame and its licensors shall not
31 > * be liable for any damages suffered by licensee as a result of
32 > * using, modifying or distributing the software or its
33 > * derivatives. In no event will the University of Notre Dame or its
34 > * licensors be liable for any lost revenue, profit or data, or for
35 > * direct, indirect, special, consequential, incidental or punitive
36 > * damages, however caused and regardless of the theory of liability,
37 > * arising out of the use of or inability to use software, even if the
38 > * University of Notre Dame has been advised of the possibility of
39 > * such damages.
40 > */
41 >
42   #ifdef IS_MPI
43   #include <mpi.h>
44   #endif
45  
11 #ifdef PROFILE
12 #include "profiling/mdProfile.hpp"
13 #endif // PROFILE
14
46   #include "utils/simError.h"
47 < #include "brains/SimSetup.hpp"
47 > #include "brains/Register.hpp"
48 > #include "brains/SimCreator.hpp"
49   #include "brains/SimInfo.hpp"
50 < #include "primitives/Atom.hpp"
50 > #include "constraints/ZconstraintForceManager.hpp"
51 > #include "integrators/IntegratorFactory.hpp"
52   #include "integrators/Integrator.hpp"
53 < #include "brains/Thermo.hpp"
54 < #include "io/ReadWrite.hpp"
55 < #include "minimizers/OOPSEMinimizer.hpp"
53 > #include "minimizers/MinimizerFactory.hpp"
54 > #include "minimizers/Minimizer.hpp"
55 > using namespace oopse;
56  
24 char* program_name;
25 using namespace std;
26
57   int main(int argc,char* argv[]){
28  
29  char* in_name;
30  SimSetup* startMe;
31  SimInfo* entry_plug;
58    
59    // first things first, all of the initializations
60  
# Line 38 | Line 64 | int main(int argc,char* argv[]){
64    
65    initSimError();           // the error handler
66    srand48( 1337 );          // the random number generator.
41
42 #ifdef PROFILE
43  initProfile();
44 #endif //profile
67    
46  // check command line arguments, and set the input file
47  
48  program_name = argv[0]; // save the program name in case we need it
49  
68   #ifdef IS_MPI
69    if( worldRank == 0 ){
70   #endif
# Line 55 | Line 73 | int main(int argc,char* argv[]){
73        "  |    ____  ____  ____  _____ ______  The OpenSource, Object-oriented   |\n" <<
74        "  |   / __ \\/ __ \\/ __ \\/ ___// ____/  Parallel Simulation Engine.       |\n" <<
75        "  |  / / / / / / / /_/ /\\__ \\/ __/                                       |\n" <<
76 <      "  | / /_/ / /_/ / ____/___/ / /___     Copyright 2004 by the             |\n" <<
76 >      "  | / /_/ / /_/ / ____/___/ / /___     Copyright 2004-2005 by the        |\n" <<
77        "  | \\____/\\____/_/    /____/_____/     University of Notre Dame.         |\n" <<
60      "  |                                    http://www.oopse.org              |\n" <<
78        "  |                                                                      |\n" <<
79 +      "  |                     version " <<
80 +      OOPSE_VERSION_MAJOR << "." << OOPSE_VERSION_MINOR << "." << OOPSE_VERSION_TINY <<
81 +      "  http://www.oopse.org              |\n" <<
82 +      "  |                                                                      |\n" <<
83        "  | OOPSE is an OpenScience project.  All source code is available for   |\n" <<
84        "  | any use subject to only one condition:                               |\n" <<
85        "  |                                                                      |\n" <<
86        "  | Any published work resulting from the use of this code must cite the |\n" <<
87        "  | following paper:       M. A. Meineke, C. F. Vardeman II, T. Lin,     |\n" <<
88        "  |                        C. J. Fennell, and J. D. Gezelter,            |\n" <<
89 <      "  |                        J. Comp. Chem. XX, XXXX (2004).               |\n" <<
89 >      "  |                        J. Comput. Chem. 26, pp. 252-271 (2005).      |\n" <<
90        "  +----------------------------------------------------------------------+\n" <<
91        "\n";
92      
# Line 78 | Line 99 | int main(int argc,char* argv[]){
99    }
100   #endif
101    
81  in_name = argv[1];
82
102   #ifdef IS_MPI
103    strcpy( checkPointMsg, "Successful number of arguments" );
104    MPIcheckPoint();
105   #endif
106 +
107 +
108 +
109 +  //register forcefields, integrators and minimizers
110 +  registerAll();
111 +
112 +  //create simulation model
113 +  SimCreator creator;
114 +  SimInfo* info = creator.createSim(argv[1]);
115 +  Globals* simParams = info->getSimParams();
116 +
117 +  if (simParams->haveMinimizer() && simParams->haveEnsemble()) {
118 +    sprintf(painCave.errMsg, "Minimizer keyword and Ensemble keyword can not exist together\n");
119 +    painCave.isFatal = 1;
120 +    simError();        
121 +  }
122      
123 <  // create the simulation objects, and get the show on the road
123 >  if (simParams->haveMinimizer()) {
124 >    //create minimizer
125 >    Minimizer* myMinimizer = MinimizerFactory::getInstance()->createMinimizer(simParams->getMinimizer(), info);
126  
127 <  entry_plug = new SimInfo();
128 <  startMe = new SimSetup();
127 >    if (myMinimizer == NULL) {
128 >      sprintf(painCave.errMsg, "Minimizer Factory can not create %s Minimizer\n",
129 >              simParams->getMinimizer().c_str());
130 >      painCave.isFatal = 1;
131 >      simError();
132 >    }
133  
134 <  startMe->setSimInfo( entry_plug );
134 >    myMinimizer->minimize();
135 >    delete myMinimizer;
136 >  } else if (simParams->haveEnsemble()) {
137 >    //create Integrator
138  
139 < #ifdef PROFILE
96 <  startProfile( pro1 );
97 < #endif //profile
139 >    Integrator* myIntegrator = IntegratorFactory::getInstance()->createIntegrator(simParams->getEnsemble(), info);
140  
141 <  startMe->parseFile( in_name );
141 >    if (myIntegrator == NULL) {
142 >      sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n",
143 >              simParams->getEnsemble().c_str());
144 >      painCave.isFatal = 1;
145 >      simError();
146 >    }
147 >                
148 >    //Thermodynamic Integration Method
149 >    //ForceManager* fman = new ThermodynamicForceManager(info);
150 >    //myIntegrator->setForceManager(fman);
151  
101 #ifdef PROFILE
102  endProfile( pro1 );
103  
104  startProfile( pro2 );
105 #endif //profile
152  
153 <  startMe->createSim();
154 <  delete startMe;
153 >    //Zconstraint-Method
154 >    if (simParams->haveNZconstraints()) {
155 >      info->setNZconstraint(simParams->getNZconstraints());
156 >      ForceManager* fman = new ZconstraintForceManager(info);
157 >      myIntegrator->setForceManager(fman);
158 >    }
159 >        
160 >    myIntegrator->integrate();
161 >    delete myIntegrator;
162 >  }else {
163 >    sprintf(painCave.errMsg, "Integrator Factory can not create %s Integrator\n",
164 >            simParams->getEnsemble().c_str());
165 >    painCave.isFatal = 1;
166 >    simError();
167 >  }
168  
110 #ifdef PROFILE
111  endProfile( pro2 );
112  
113  startProfile( pro3 );
114 #endif //profile
169  
170 <  if (!entry_plug->has_minimizer)
171 <    entry_plug->the_integrator->integrate();
118 <  else
119 <    entry_plug->the_minimizer->minimize();
120 < #ifdef PROFILE
121 <  endProfile( pro3 );
122 <
123 <  writeProfiles();
124 < #endif //profile
170 >    
171 >  delete info;
172  
173   #ifdef IS_MPI
174    strcpy( checkPointMsg, "Oh what a lovely Tea Party!" );
175    MPIcheckPoint();
176    
177 <  MPI_Finalize();        
177 >  MPI_Finalize();
178   #endif
179  
180    return 0 ;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines