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

Comparing trunk/OOPSE-4/src/visitors/OtherVisitor.cpp (file contents):
Revision 1490 by gezelter, Fri Sep 24 04:16:43 2004 UTC vs.
Revision 3116 by chuckv, Tue Jan 16 22:18:04 2007 UTC

# Line 1 | Line 1
1 < #include "OtherVisitor.hpp"
2 < #include "DirectionalAtom.hpp"
3 < #include "RigidBody.hpp"
4 < #include "Molecule.hpp"
5 < #include "SimInfo.hpp"
6 < //----------------------------------------------------------------------------//
7 < void IgnoreVisitor::visit(Atom* atom){
8 <  if(isIgnoreType(atom->getType()))
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 > #include "selection/SelectionManager.hpp"
42 > #include "visitors/OtherVisitor.hpp"
43 > #include "primitives/DirectionalAtom.hpp"
44 > #include "primitives/RigidBody.hpp"
45 > #include "primitives/Molecule.hpp"
46 > #include "brains/SimInfo.hpp"
47 > namespace oopse {
48 >
49 >  void WrappingVisitor::visit(Atom *atom) {
50      internalVisit(atom);
51 < }
51 >  }
52  
53 < void IgnoreVisitor::visit(DirectionalAtom* datom){
13 <  if(isIgnoreType(datom->getType()))
53 >  void WrappingVisitor::visit(DirectionalAtom *datom) {
54      internalVisit(datom);
55 < }
55 >  }
56  
57 < void IgnoreVisitor::visit(RigidBody* rb){
18 <  vector<Atom*> myAtoms;
19 <  vector<Atom*>::iterator atomIter;
20 <  AtomInfo* atomInfo;
21 <  
22 <  if(isIgnoreType(rb->getType())){
23 <    
57 >  void WrappingVisitor::visit(RigidBody *rb) {
58      internalVisit(rb);
59 +  }
60  
61 <    myAtoms = rb->getAtoms();    
62 <    
63 <    for(atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter)
64 <      internalVisit(*atomIter);
61 >  void WrappingVisitor::internalVisit(StuntDouble *sd) {
62 >    GenericData *                     data;
63 >    AtomData *                        atomData;
64 >    AtomInfo *                        atomInfo;
65 >    std::vector<AtomInfo *>::iterator i;
66  
67 <  }
32 <  
33 < }
67 >    data = sd->getPropertyByName("ATOMDATA");
68  
69 < bool IgnoreVisitor::isIgnoreType(const string& name){
70 <  return itList.find(name) != itList.end() ? true : false;
37 < }
69 >    if (data != NULL) {
70 >      atomData = dynamic_cast<AtomData *>(data);
71  
72 < void IgnoreVisitor::internalVisit(StuntDouble* sd){
73 <  GenericData* data;
74 <  data = sd->getProperty("IGNORE");
72 >      if (atomData == NULL)
73 >        return;
74 >    } else
75 >      return;
76  
77 <  //if this stuntdoulbe is already marked as ignore just skip it
44 <  if (data == NULL){
45 <    data = new GenericData;
46 <    data->setID("IGNORE");
47 <    sd->addProperty(data);
48 <  }
77 >    Snapshot* currSnapshot = info->getSnapshotManager()->getCurrentSnapshot();
78      
79 < }
79 >    for( atomInfo = atomData->beginAtomInfo(i); atomInfo; atomInfo = atomData->nextAtomInfo(i) ) {
80 >      Vector3d newPos = atomInfo->pos - origin_;
81 >      currSnapshot->wrapVector(newPos);
82 >      atomInfo->pos = newPos;
83 >    }
84 >  }
85  
86 < const string IgnoreVisitor::toString(){
87 <  char buffer[65535];
88 <  string result;
89 <  set<string>::iterator i;
86 >  void WrappingVisitor::update() {
87 >    if (useCom_){
88 >      origin_ = info->getCom();
89 >    }
90 >  }
91    
92 <  sprintf(buffer ,"------------------------------------------------------------------\n");
93 <  result += buffer;
92 >  const std::string WrappingVisitor::toString() {
93 >    char        buffer[65535];
94 >    std::string result;
95  
96 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
97 <  result += buffer;
96 >    sprintf(buffer,
97 >            "------------------------------------------------------------------\n");
98 >    result += buffer;
99  
100 <  sprintf(buffer ,"Visitor Description: ignore  stuntdoubles\n");
101 <  result += buffer;
100 >    sprintf(buffer, "Visitor name: %s\n", visitorName.c_str());
101 >    result += buffer;
102  
103 <  //print the ignore type list
104 <  sprintf(buffer , "Ignore type list contains below types:\n");
105 <  result += buffer;
103 >    sprintf(buffer,
104 >            "Visitor Description: wrapping atoms back to periodic box\n");
105 >    result += buffer;
106  
107 <  for(i = itList.begin(); i != itList.end(); ++i){
108 <    sprintf(buffer ,"%s\t", i->c_str());
107 >    sprintf(buffer,
108 >            "------------------------------------------------------------------\n");
109      result += buffer;
110  
111 +    return result;
112    }
75  sprintf(buffer ,"\n");
76  result += buffer;
113  
114 <  sprintf(buffer ,"------------------------------------------------------------------\n");
79 <  result += buffer;
114 >  //----------------------------------------------------------------------------//
115  
116 <  return result;
117 < }
116 >  ReplicateVisitor::ReplicateVisitor(SimInfo *info, Vector3i opt) :
117 >    BaseVisitor() {
118 >      this->info = info;
119 >      visitorName = "ReplicateVisitor";
120 >      this->replicateOpt = opt;
121  
122 < //----------------------------------------------------------------------------//
122 >      //generate the replicate directions
123 >      for( int i = 0; i <= replicateOpt[0]; i++ ) {
124 >        for( int j = 0; j <= replicateOpt[1]; j++ ) {
125 >          for( int k = 0; k <= replicateOpt[2]; k++ ) {
126 >            //skip original frame
127 >            if (i == 0 && j == 0 && k == 0) {
128 >              continue;
129 >            } else {
130 >              dir.push_back(Vector3i(i, j, k));
131 >            }
132 >          }
133 >        }
134 >      }
135 >    
136 >    }
137  
138 < void WrappingVisitor::visit(Atom* atom){
139 <  internalVisit(atom);
140 < }
89 < void WrappingVisitor::visit(DirectionalAtom* datom){
90 <  internalVisit(datom);
91 < }
138 >  void ReplicateVisitor::visit(Atom *atom) {
139 >    internalVisit(atom);
140 >  }
141  
142 < void WrappingVisitor::visit(RigidBody* rb){
143 <  internalVisit(rb);
144 < }
142 >  void ReplicateVisitor::visit(DirectionalAtom *datom) {
143 >    internalVisit(datom);
144 >  }
145  
146 < void WrappingVisitor::internalVisit(StuntDouble* sd){
147 <  GenericData* data;
99 <  AtomData* atomData;
100 <  AtomInfo* atomInfo;
101 <  vector<AtomInfo*>::iterator i;
102 <
103 <  data = sd->getProperty("ATOMDATA");
104 <  if(data != NULL){
105 <    atomData = dynamic_cast<AtomData*>(data);  
106 <    if(atomData == NULL)
107 <      return;
146 >  void ReplicateVisitor::visit(RigidBody *rb) {
147 >    internalVisit(rb);
148    }
109  else
110    return;
149  
150 <  for(atomInfo = atomData->beginAtomInfo(i); atomInfo; atomInfo = atomData->nextAtomInfo(i))
151 <    info->wrapVector(atomInfo->pos);
150 >  void ReplicateVisitor::internalVisit(StuntDouble *sd) {
151 >    GenericData *          data;
152 >    AtomData *             atomData;
153  
154 <  
155 < }
154 >    //if there is not atom data, just skip it
155 >    data = sd->getPropertyByName("ATOMDATA");
156  
157 < const string WrappingVisitor::toString(){
158 <  char buffer[65535];
120 <  string result;
121 <  
122 <  sprintf(buffer ,"------------------------------------------------------------------\n");
123 <  result += buffer;
157 >    if (data != NULL) {
158 >      atomData = dynamic_cast<AtomData *>(data);
159  
160 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
161 <  result += buffer;
160 >      if (atomData == NULL) {
161 >        return;
162 >      }
163 >    } else {
164 >      return;
165 >    }
166  
167 <  sprintf(buffer ,"Visitor Description: wrapping atoms back to periodic box\n");
168 <  result += buffer;
130 <
131 <  sprintf(buffer,"------------------------------------------------------------------\n");
132 <  result += buffer;
167 >    Snapshot* currSnapshot = info->getSnapshotManager()->getCurrentSnapshot();
168 >    Mat3x3d box = currSnapshot->getHmat();
169  
170 <  return result;
135 < }
170 >    std::vector<AtomInfo *> atomInfoList = atomData->getData();
171  
172 < //----------------------------------------------------------------------------//
172 >    replicate(atomInfoList, atomData, box);
173 >  }
174  
175 < ReplicateVisitor::ReplicateVisitor(SimInfo* info, IntVec3 opt) : BaseVisitor(){
176 <  this->info = info;
177 <  visitorName = "ReplicateVisitor";
178 <  this->replicateOpt = opt;
143 <  //generate the replicate directions
144 <  for(int i = 0; i <= replicateOpt[0]; i ++)
145 <    for(int j = 0; j <= replicateOpt[1]; j ++)
146 <      for(int k = 0; k <= replicateOpt[2]; k ++)
147 <        //skip original frame
148 <        if(i == 0 && j ==0 && k ==0)
149 <          continue;
150 <        else
151 <          dir.push_back(IntVec3(i, j, k));
152 <  
153 < }
154 < void ReplicateVisitor::visit(Atom* atom){
155 <  internalVisit(atom);
156 < }
157 < void ReplicateVisitor::visit(DirectionalAtom* datom){
158 <  internalVisit(datom);
159 < }
175 >  void ReplicateVisitor::replicate(std::vector<AtomInfo *>&infoList, AtomData *data, const Mat3x3d& box) {
176 >    AtomInfo* newAtomInfo;
177 >    std::vector<Vector3i>::iterator dirIter;
178 >    std::vector<AtomInfo *>::iterator i;
179  
180 < void ReplicateVisitor::visit(RigidBody* rb){
181 <  internalVisit(rb);
182 < }
180 >    for( dirIter = dir.begin(); dirIter != dir.end(); ++dirIter ) {
181 >      for( i = infoList.begin(); i != infoList.end(); i++ ) {
182 >        newAtomInfo = new AtomInfo();
183 >        *newAtomInfo = *(*i);
184  
185 < void ReplicateVisitor::internalVisit(StuntDouble* sd){
186 <  GenericData* data;
187 <  AtomData* atomData;
188 <  AtomInfo* atomInfo;
189 <  double box[3][3];
190 <  vector<AtomInfo*> atomInfoList;
171 <  IntVec3 dir;
172 <  
173 <  //if there is not atom data, just skip it
174 <  data = sd->getProperty("ATOMDATA");
175 <  if(data != NULL){
176 <    atomData = dynamic_cast<AtomData*>(data);  
177 <    if(atomData == NULL)
178 <      return;
185 >        for( int j = 0; j < 3; j++ )
186 >          newAtomInfo->pos[j] += (*dirIter)[0]*box(j, 0) + (*dirIter)[1]*box(j, 1) + (*dirIter)[2]*box(j, 2);
187 >
188 >        data->addAtomInfo(newAtomInfo);
189 >      }
190 >    } // end for(dirIter)  
191    }
180  else
181    return;
192  
193 <  
194 <  info->getBoxM(box);
193 >  const std::string ReplicateVisitor::toString() {
194 >    char                            buffer[65535];
195 >    std::string                     result;
196 >    std::set<std::string>::iterator i;
197  
198 <  atomInfoList = atomData->getData();
199 <  
200 <  replicate(atomInfoList, atomData, box);
198 >    sprintf(buffer,
199 >            "------------------------------------------------------------------\n");
200 >    result += buffer;
201  
202 < }
202 >    sprintf(buffer, "Visitor name: %s\n", visitorName.c_str());
203 >    result += buffer;
204  
205 < void ReplicateVisitor::replicate(vector<AtomInfo*>& infoList, AtomData* data, double boxM[3][3]){
206 <  AtomInfo * newAtomInfo;
207 <  vector<IntVec3>::iterator dirIter;
195 <  vector<AtomInfo*>::iterator i;
196 <  
197 <  for(dirIter = dir.begin(); dirIter != dir.end(); ++dirIter){
198 <    for(i = infoList.begin(); i != infoList.end(); i++){
199 <      newAtomInfo = new AtomInfo;
200 <      *newAtomInfo = *(*i);    
205 >    sprintf(buffer,
206 >            "Visitor Description: replicate the atoms in different direction\n");
207 >    result += buffer;
208  
209 <      for(int j = 0; j < 3; j++)
210 <        newAtomInfo->pos[j] +=   (*dirIter)[0] * boxM[j][0] + (*dirIter)[1]* boxM[j][1] + (*dirIter)[2] * boxM[j][2];
209 >    //print the replicate direction
210 >    sprintf(buffer, "repeatX = %d:\n", replicateOpt[0]);
211 >    result += buffer;
212  
213 <      data->addAtomInfo(newAtomInfo);
214 <    }
207 <  }// end for(dirIter)  
208 < }
213 >    sprintf(buffer, "repeatY = %d:\n", replicateOpt[1]);
214 >    result += buffer;
215  
216 < const string ReplicateVisitor::toString(){
217 <  char buffer[65535];
212 <  string result;
213 <  set<string>::iterator i;
214 <  
215 <  sprintf(buffer ,"------------------------------------------------------------------\n");
216 <  result += buffer;
216 >    sprintf(buffer, "repeatZ = %d:\n", replicateOpt[2]);
217 >    result += buffer;
218  
219 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
220 <  result += buffer;
219 >    sprintf(buffer,
220 >            "------------------------------------------------------------------\n");
221 >    result += buffer;
222  
223 <  sprintf(buffer ,"Visitor Description: replicate the atoms in different direction\n");
224 <  result += buffer;
223 <  
224 <  //print the replicate direction
225 <  sprintf(buffer , "repeatX = %d:\n", replicateOpt[0]);
226 <  result += buffer;
223 >    return result;
224 >  }
225  
226 <  sprintf(buffer , "repeatY = %d:\n", replicateOpt[1]);
229 <  result += buffer;
226 >  //----------------------------------------------------------------------------//
227  
228 <  sprintf(buffer , "repeatZ = %d:\n", replicateOpt[2]);
229 <  result += buffer;
228 >  XYZVisitor::XYZVisitor(SimInfo *info) :
229 >    BaseVisitor(), seleMan(info), evaluator(info){
230 >      this->info = info;
231 >      visitorName = "XYZVisitor";
232  
233 +      evaluator.loadScriptString("select all");
234  
235 <  sprintf(buffer,"------------------------------------------------------------------\n");
236 <  result += buffer;
235 >      if (!evaluator.isDynamic()) {
236 >        seleMan.setSelectionSet(evaluator.evaluate());
237 >      }
238 >      posOnly_ = false;
239 >    }
240  
241 <  return result;
242 < }
241 >  XYZVisitor::XYZVisitor(SimInfo *info, const std::string& script) :
242 >    BaseVisitor(), seleMan(info), evaluator(info) {
243 >      this->info = info;
244 >      visitorName = "XYZVisitor";
245  
246 < //----------------------------------------------------------------------------//
246 >      evaluator.loadScriptString(script);
247  
248 < XYZVisitor::XYZVisitor(SimInfo* info,  bool printDipole) : BaseVisitor(){
249 <  this->info = info;
250 <  visitorName = "XYZVisitor";
251 <  this->printDipole = printDipole;
252 < }
248 >      if (!evaluator.isDynamic()) {
249 >        seleMan.setSelectionSet(evaluator.evaluate());
250 >      }
251 >      posOnly_ = false;
252 >    }
253 >    
254 >  void XYZVisitor::visit(Atom *atom) {
255 >    if (isSelected(atom))
256 >      internalVisit(atom);
257 >  }
258  
259 < void XYZVisitor::visit(Atom* atom){
260 <  if(!isIgnore(atom))
261 <    internalVisit(atom);
262 < }
259 >  void XYZVisitor::visit(DirectionalAtom *datom) {
260 >    if (isSelected(datom))
261 >      internalVisit(datom);
262 >  }
263  
264 < void XYZVisitor::visit(DirectionalAtom* datom){
265 <  if(!isIgnore(datom))
266 <    internalVisit(datom);
267 < }
264 >  void XYZVisitor::visit(RigidBody *rb) {
265 >    if (isSelected(rb))
266 >      internalVisit(rb);
267 >  }
268  
269 < void XYZVisitor::visit(RigidBody* rb){
270 <  if(!isIgnore(rb))
271 <    internalVisit(rb);
269 >  void XYZVisitor::update() {
270 >    //if dynamic, we need to re-evaluate the selection
271 >    if (evaluator.isDynamic()) {
272 >      seleMan.setSelectionSet(evaluator.evaluate());
273 >    }
274 >  }
275  
276 < }
276 >  void XYZVisitor::internalVisit(StuntDouble *sd) {
277 >    GenericData *                     data;
278 >    AtomData *                        atomData;
279 >    AtomInfo *                        atomInfo;
280 >    std::vector<AtomInfo *>::iterator i;
281 >    char                              buffer[1024];
282  
283 < void XYZVisitor::internalVisit(StuntDouble* sd){
284 <  GenericData* data;
285 <  AtomData* atomData;
286 <  AtomInfo* atomInfo;
287 <  vector<AtomInfo*>::iterator i;
288 <  char buffer[1024];
289 <  
290 <  //if there is not atom data, just skip it
291 <  data = sd->getProperty("ATOMDATA");
274 <  if(data != NULL){
275 <    atomData = dynamic_cast<AtomData*>(data);  
276 <    if(atomData == NULL)
283 >    //if there is not atom data, just skip it
284 >    data = sd->getPropertyByName("ATOMDATA");
285 >
286 >    if (data != NULL) {
287 >      atomData = dynamic_cast<AtomData *>(data);
288 >
289 >      if (atomData == NULL)
290 >        return;
291 >    } else
292        return;
293 +
294 +    if (posOnly_){
295 +      for( atomInfo = atomData->beginAtomInfo(i); atomInfo;
296 +           atomInfo = atomData->nextAtomInfo(i) ) {
297 +        sprintf(buffer,
298 +                "%s%15.8f%15.8f%15.8f",
299 +                atomInfo->atomTypeName.c_str(),
300 +                atomInfo->pos[0],
301 +                atomInfo->pos[1],
302 +                atomInfo->pos[2]);
303 +        frame.push_back(buffer);
304 +      }
305 +    }else{
306 +      for( atomInfo = atomData->beginAtomInfo(i); atomInfo;
307 +           atomInfo = atomData->nextAtomInfo(i) ) {
308 +        sprintf(buffer,
309 +                "%s%15.8f%15.8f%15.8f%15.8f%15.8f%15.8f",
310 +                atomInfo->atomTypeName.c_str(),
311 +                atomInfo->pos[0],
312 +                atomInfo->pos[1],
313 +                atomInfo->pos[2],
314 +                atomInfo->dipole[0],
315 +                atomInfo->dipole[1],
316 +                atomInfo->dipole[2]);
317 +        frame.push_back(buffer);
318 +      }
319 +    }
320    }
279  else
280    return;
321  
322 <  for(atomInfo = atomData->beginAtomInfo(i); atomInfo; atomInfo = atomData->nextAtomInfo(i)){
322 >  bool XYZVisitor::isSelected(StuntDouble *sd) {
323 >    return seleMan.isSelected(sd);
324 >  }
325  
326 <    if(printDipole)
327 <      sprintf(buffer, "%s%15.8f%15.8f%15.8f%15.8f%15.8f%15.8f",
328 <                  atomInfo->AtomType.c_str(),
287 <                  atomInfo->pos[0],
288 <                  atomInfo->pos[1],
289 <                  atomInfo->pos[2],
290 <                  atomInfo->dipole[0],
291 <                  atomInfo->dipole[1],
292 <                  atomInfo->dipole[2]);
293 <    else
294 <      sprintf(buffer, "%s%15.8f%15.8f%15.8f",
295 <                  atomInfo->AtomType.c_str(),
296 <                  atomInfo->pos[0],
297 <                  atomInfo->pos[1],
298 <                  atomInfo->pos[2]);  
326 >  void XYZVisitor::writeFrame(std::ostream &outStream) {
327 >    std::vector<std::string>::iterator i;
328 >    char buffer[1024];
329  
330 <    frame.push_back(buffer);
331 <              
302 <  }
330 >    if (frame.size() == 0)
331 >      std::cerr << "Current Frame does not contain any atoms" << std::endl;
332  
333 < }
333 >    //total number of atoms  
334 >    outStream << frame.size() << std::endl;
335  
336 < bool XYZVisitor::isIgnore(StuntDouble* sd){
337 <  GenericData* data;
338 <  
339 <  data = sd->getProperty("IGNORE");
340 <  return data ==NULL ? false : true;
341 < }
336 >    //write comment line
337 >    Snapshot* currSnapshot = info->getSnapshotManager()->getCurrentSnapshot();
338 >    Mat3x3d box = currSnapshot->getHmat();
339 >    
340 >    sprintf(buffer,
341 >            "%15.8f;%15.8f%15.8f%15.8f;%15.8f%15.8f%15.8f;%15.8f%15.8f%15.8f",
342 >            currSnapshot->getTime(),
343 >            box(0, 0), box(0, 1), box(0, 2),
344 >            box(1, 0), box(1, 1), box(1, 2),
345 >            box(2, 0), box(2, 1), box(2, 2));
346  
347 < void XYZVisitor::writeFrame(ostream& outStream){
314 <  vector<string>::iterator i;
315 <  double box[3][3];
316 <  char buffer[1024];
347 >    outStream << buffer << std::endl;
348  
349 <  if(frame.size() == 0)
350 <    cerr << "Current Frame does not contain any atoms" << endl;
349 >    for( i = frame.begin(); i != frame.end(); ++i )
350 >      outStream << *i << std::endl;
351 >  }
352  
353 <  //total number of atoms  
354 <  outStream << frame.size() << endl;
353 >  const std::string XYZVisitor::toString() {
354 >    char        buffer[65535];
355 >    std::string result;
356  
357 <  //write comment line
358 <  info->getBoxM(box);
359 <  sprintf(buffer,"%15.8f;%15.8f%15.8f%15.8f;%15.8f%15.8f%15.8f;%15.8f%15.8f%15.8f",
327 <              info->getTime(),
328 <              box[0][0], box[0][1], box[0][2],
329 <              box[1][0], box[1][1], box[1][2],
330 <              box[2][0], box[2][1], box[2][2]);
357 >    sprintf(buffer,
358 >            "------------------------------------------------------------------\n");
359 >    result += buffer;
360  
361 <  outStream << buffer << endl;  
361 >    sprintf(buffer, "Visitor name: %s\n", visitorName.c_str());
362 >    result += buffer;
363  
364 <  for(i = frame.begin(); i != frame.end(); ++i)
365 <    outStream << *i << endl;
366 < }
364 >    sprintf(buffer,
365 >            "Visitor Description: assemble the atom data and output xyz file\n");
366 >    result += buffer;
367  
368 < const string XYZVisitor::toString(){
369 <  char buffer[65535];
370 <  string result;
341 <  
342 <  sprintf(buffer ,"------------------------------------------------------------------\n");
343 <  result += buffer;
368 >    sprintf(buffer,
369 >            "------------------------------------------------------------------\n");
370 >    result += buffer;
371  
372 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
373 <  result += buffer;
372 >    return result;
373 >  }
374  
375 <  sprintf(buffer ,"Visitor Description: assemble the atom data and output xyz file\n");
349 <  result += buffer;
350 <
351 <  sprintf(buffer,"------------------------------------------------------------------\n");
352 <  result += buffer;
375 >  //----------------------------------------------------------------------------//
376  
377 <  return result;
378 < }
377 >  void PrepareVisitor::internalVisit(Atom *atom) {
378 >    GenericData *data;
379 >    AtomData *   atomData;
380  
381 < //----------------------------------------------------------------------------//
381 >    //if visited property is  existed, remove it
382 >    data = atom->getPropertyByName("VISITED");
383  
384 < void PrepareVisitor::internalVisit(Atom * atom){
385 <  GenericData* data;
386 <  AtomData* atomData;
384 >    if (data != NULL) {
385 >      atom->removeProperty("VISITED");
386 >    }
387  
388 <  //if visited property is  existed, remove it
389 <  data = atom->getProperty("VISITED");
365 <  if(data != NULL){
366 <    atom->removeProperty("VISITED");  
367 <  }
388 >    //remove atomdata
389 >    data = atom->getPropertyByName("ATOMDATA");
390  
391 <  //remove atomdata
392 <  data = atom->getProperty("ATOMDATA");
371 <  if(data != NULL){
372 <    atomData = dynamic_cast<AtomData*>(data);  
373 <    if(atomData != NULL)
374 <      atom->removeProperty("ATOMDATA");
375 <  }
376 <  
377 < }
391 >    if (data != NULL) {
392 >      atomData = dynamic_cast<AtomData *>(data);
393  
394 < void PrepareVisitor::internalVisit(RigidBody * rb){
395 <  GenericData* data;
396 <  AtomData* atomData;
382 <  vector<Atom*> myAtoms;
383 <  vector<Atom*>::iterator atomIter;
384 <  
385 <  //if visited property is  existed, remove it
386 <  data = rb->getProperty("VISITED");
387 <  if(data != NULL){
388 <    rb->removeProperty("VISITED");  
394 >      if (atomData != NULL)
395 >        atom->removeProperty("ATOMDATA");
396 >    }
397    }
398  
399 <  //remove atomdata
400 <  data = rb->getProperty("ATOMDATA");
401 <  if(data != NULL){
402 <    atomData = dynamic_cast<AtomData*>(data);  
403 <    if(atomData != NULL)
396 <      rb->removeProperty("ATOMDATA");
397 <  }
399 >  void PrepareVisitor::internalVisit(RigidBody *rb) {
400 >    GenericData* data;
401 >    AtomData* atomData;
402 >    std::vector<Atom *> myAtoms;
403 >    std::vector<Atom *>::iterator atomIter;
404  
405 <  myAtoms = rb->getAtoms();
406 <    
401 <  for(atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter)
402 <   internalVisit (*atomIter);  
403 < }
405 >    //if visited property is  existed, remove it
406 >    data = rb->getPropertyByName("VISITED");
407  
408 < const string PrepareVisitor::toString(){
409 <  char buffer[65535];
410 <  string result;
408 <  
409 <  sprintf(buffer ,"------------------------------------------------------------------\n");
410 <  result += buffer;
408 >    if (data != NULL) {
409 >      rb->removeProperty("VISITED");
410 >    }
411  
412 <  sprintf(buffer ,"Visitor name: %s", visitorName.c_str());
413 <  result += buffer;
412 >    //remove atomdata
413 >    data = rb->getPropertyByName("ATOMDATA");
414  
415 <  sprintf(buffer ,"Visitor Description: prepare for operation of other vistors\n");
416 <  result += buffer;
415 >    if (data != NULL) {
416 >      atomData = dynamic_cast<AtomData *>(data);
417  
418 <  sprintf(buffer ,"------------------------------------------------------------------\n");
419 <  result += buffer;
418 >      if (atomData != NULL)
419 >        rb->removeProperty("ATOMDATA");
420 >    }
421  
422 <  return result;
422 < }
422 >    myAtoms = rb->getAtoms();
423  
424 < //----------------------------------------------------------------------------//
424 >    for( atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter )
425 >      internalVisit(*atomIter);
426 >  }
427  
428 < WaterTypeVisitor:: WaterTypeVisitor(){
429 <  visitorName = "WaterTypeVisitor";
430 <  waterTypeList.insert("TIP3P_RB_0");
431 <  waterTypeList.insert("TIP4P_RB_0");
432 <  waterTypeList.insert("TIP5P_RB_0");
433 <  waterTypeList.insert("SPCE_RB_0");  
434 < }
428 >  const std::string PrepareVisitor::toString() {
429 >    char buffer[65535];
430 >    std::string result;
431 >
432 >    sprintf(buffer,
433 >            "------------------------------------------------------------------\n");
434 >    result += buffer;
435 >
436 >    sprintf(buffer, "Visitor name: %s", visitorName.c_str());
437 >    result += buffer;
438 >
439 >    sprintf(buffer,
440 >            "Visitor Description: prepare for operation of other vistors\n");
441 >    result += buffer;
442 >
443 >    sprintf(buffer,
444 >            "------------------------------------------------------------------\n");
445 >    result += buffer;
446 >
447 >    return result;
448 >  }
449  
450 +  //----------------------------------------------------------------------------//
451  
452 < void WaterTypeVisitor:: visit(RigidBody* rb){
453 <  string rbName;
454 <  vector<Atom*> myAtoms;
455 <  vector<Atom*>::iterator atomIter;
456 <  GenericData* data;
457 <  AtomData* atomData;
458 <  AtomInfo* atomInfo;
442 <  vector<AtomInfo*>::iterator i;
443 <  
444 <  rbName = rb->getType();
452 >  WaterTypeVisitor::WaterTypeVisitor() {
453 >    visitorName = "WaterTypeVisitor";
454 >    waterTypeList.insert("TIP3P_RB_0");
455 >    waterTypeList.insert("TIP4P_RB_0");
456 >    waterTypeList.insert("TIP5P_RB_0");
457 >    waterTypeList.insert("SPCE_RB_0");
458 >  }
459  
460 <  if(waterTypeList.find(rbName) != waterTypeList.end()){
460 >  void WaterTypeVisitor::visit(RigidBody *rb) {
461 >    std::string rbName;
462 >    std::vector<Atom *> myAtoms;
463 >    std::vector<Atom *>::iterator atomIter;
464 >    GenericData* data;
465 >    AtomData* atomData;
466 >    AtomInfo* atomInfo;
467 >    std::vector<AtomInfo *>::iterator i;
468  
469 <    myAtoms = rb->getAtoms();    
449 <    for(atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter){
469 >    rbName = rb->getType();
470  
471 <      data = (*atomIter)->getProperty("ATOMDATA");
472 <      if(data != NULL){
453 <        atomData = dynamic_cast<AtomData*>(data);  
454 <        if(atomData == NULL)
455 <          continue;
456 <      }
457 <      else
458 <        continue;
459 <      
460 <      for(atomInfo = atomData->beginAtomInfo(i); atomInfo; atomInfo = atomData->nextAtomInfo(i)){
461 <        replaceType(atomInfo->AtomType);
462 <      }//end for(atomInfo)
471 >    if (waterTypeList.find(rbName) != waterTypeList.end()) {
472 >      myAtoms = rb->getAtoms();
473  
474 <    }//end for(atomIter)
475 <      
476 <  }//end if (waterTypeList.find(rbName) != waterTypeList.end())
467 <  
468 < }
474 >      for( atomIter = myAtoms.begin(); atomIter != myAtoms.end();
475 >           ++atomIter ) {
476 >        data = (*atomIter)->getPropertyByName("ATOMDATA");
477  
478 < void WaterTypeVisitor:: replaceType(string& atomType){
479 <  atomType = atomType.substr(0, atomType.find('_'));
472 < }
478 >        if (data != NULL) {
479 >          atomData = dynamic_cast<AtomData *>(data);
480  
481 < const string WaterTypeVisitor:: toString(){
482 <  char buffer[65535];
483 <  string result;
484 <  
478 <  sprintf(buffer ,"------------------------------------------------------------------\n");
479 <  result += buffer;
481 >          if (atomData == NULL)
482 >            continue;
483 >        } else
484 >          continue;
485  
486 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
487 <  result += buffer;
486 >        for( atomInfo = atomData->beginAtomInfo(i); atomInfo;
487 >             atomInfo = atomData->nextAtomInfo(i) ) {
488 >          atomInfo->atomTypeName = trimmedName(atomInfo->atomTypeName);
489 >        } //end for(atomInfo)
490 >      }     //end for(atomIter)
491 >    }         //end if (waterTypeList.find(rbName) != waterTypeList.end())
492 >  }
493  
494 <  sprintf(buffer ,"Visitor Description: Replace the atom type in water model\n");
495 <  result += buffer;
494 >  std::string WaterTypeVisitor::trimmedName(const std::string&atomTypeName) {
495 >    return atomTypeName.substr(0, atomTypeName.find('_'));
496 >  }
497  
498 <  sprintf(buffer ,"------------------------------------------------------------------\n");
499 <  result += buffer;
498 >  const std::string WaterTypeVisitor::toString() {
499 >    char buffer[65535];
500 >    std::string result;
501  
502 <  return result;
503 < }
502 >    sprintf(buffer,
503 >            "------------------------------------------------------------------\n");
504 >    result += buffer;
505  
506 +    sprintf(buffer, "Visitor name: %s\n", visitorName.c_str());
507 +    result += buffer;
508 +
509 +    sprintf(buffer,
510 +            "Visitor Description: Replace the atom type in water model\n");
511 +    result += buffer;
512 +
513 +    sprintf(buffer,
514 +            "------------------------------------------------------------------\n");
515 +    result += buffer;
516 +
517 +    return result;
518 +  }
519 +
520 + } //namespace oopse

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines