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

Comparing trunk/OOPSE-2.0/src/types/Component.cpp (file contents):
Revision 1492 by tim, Fri Sep 24 16:27:58 2004 UTC vs.
Revision 2469 by tim, Fri Dec 2 15:38:03 2005 UTC

# Line 1 | Line 1
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   #include <iostream>
43   #include <stdlib.h>
44   #include <string.h>
45  
46   #include "types/Component.hpp"
47  
48 < Component::Component(){
49 <  
50 <  start_array = NULL;
51 <  have_type = 0;
11 <  have_nMol = 0;
12 <  have_molFraction = 0;
13 <  have_start_array = 0;
48 > namespace oopse {
49 > Component::Component() : moleculeStamp_(NULL) {
50 >    DefineParameter(Type, "type");
51 >    DefineParameter(NMol, "nMol");
52   }
53  
54 < Component::~Component(){
17 <  
18 <  if( start_array != NULL ) free( start_array );
19 < }
54 > Component::~Component() {
55  
21 int Component::assignString( char* lhs, char* rhs, char** err ){
22  
23  char myErr[1000];
24
25
26  if( !strcmp( lhs, "type" ) ){
27    strcpy( type, rhs );
28    have_type = 1;
29  }
30
31  else{
32    sprintf(myErr, "Invalid assignment type for Component: %s = %s\n", lhs, rhs);
33    *err = strdup(myErr);
34    return 0;
35  }
36
37  return 1;
56   }
57  
58 < int Component::assignInt( char* lhs, int rhs, char** err ){
59 <  
60 <  char myErr[1000];
43 <
44 <  if( !strcmp( lhs, "nMol" ) ){
45 <    nMol = rhs;
46 <    have_nMol = 1;
47 <  }
48 <
49 <  else if( !strcmp( lhs, "molFraction" ) ){
50 <    if( rhs > 1 || rhs < 0 ){
51 <      sprintf(myErr,"Component error. %d is an invalid molFraction. It must lie between 0 and 1\n",rhs);
52 <      *err = strdup(myErr);
53 <      return 0;
54 <    }
55 <    molFraction = rhs;
56 <    have_molFraction = 1;
57 <  }
58 <
59 <  else{
60 <    sprintf(myErr, "Invalid assignment type for Component: %s = %d\n", lhs, rhs);
61 <    *err = strdup(myErr);
62 <    return 0;
63 <  }
64 <
65 <  return 1;
58 > void Component::validate() {
59 >    CheckParameter(Type, isNotEmpty());
60 >    CheckParameter(NMol, isPositive());
61   }
62  
63 < int Component::assignDouble( char* lhs, double rhs, char** err ){
64 <
65 <  char myErr[1000];
66 <
67 <  if( !strcmp( lhs, "molFraction" ) ){
68 <    if( rhs > 1 || rhs < 0 ){
69 <      sprintf(myErr,"Component error. %lf is an invalid molFraction. It must lie between 0 and 1\n",rhs);
75 <      *err = strdup(myErr);
76 <      return 0;
63 > bool Component::findMoleculeStamp(const std::map<std::string, MoleculeStamp*>& molStamps) {
64 >    bool ret = false;
65 >    std::map<std::string, MoleculeStamp*>::const_iterator i;
66 >    i = molStamps.find(getType());
67 >    if (i != molStamps.end()) {
68 >        moleculeStamp_ = i->second;
69 >        ret = true;
70      }
78    molFraction = rhs;
79    have_molFraction = 1;
80  }
71  
72 <  else if( !strcmp( lhs, "nMol" ) ){
83 <    nMol = (int) rhs;
84 <    have_nMol = 1;
85 <  }
86 <  
87 <  else{
88 <    sprintf(myErr, "Invalid assignment type for Component: %s = %lf\n", lhs, rhs);
89 <    *err = strdup(myErr);
90 <    return 0;
91 <  }
92 <
93 <  return 1;
72 >    return ret;
73   }
95
96 void Component::startIndex( int* the_start_array, int n_elements ){
97  
98  start_array = the_start_array;
99  n_start = n_elements;
100  have_start_array = 1;
74   }
102
103 char* Component::checkMe( void ){
104  
105  if( !have_type ){
106    return strdup( "type was not identified for the Component." );
107  }
108
109  return NULL;
110 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines