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

Comparing trunk/OOPSE-4/src/applications/dump2Xyz/Dump2XYZ.cpp (file contents):
Revision 2749 by tim, Wed May 10 01:44:48 2006 UTC vs.
Revision 2984 by gezelter, Wed Aug 30 21:04:04 2006 UTC

# Line 68 | Line 68 | int main(int argc, char* argv[]){
68    
69    gengetopt_args_info args_info;
70    std::string dumpFileName;
71  std::string mdFileName;
71    std::string xyzFileName;
72    
73    //parse the command line option
# Line 84 | Line 83 | int main(int argc, char* argv[]){
83      exit(1);
84    }
85    
87  mdFileName = dumpFileName;
88  mdFileName = mdFileName.substr(0, mdFileName.rfind(".")) + ".md";
89
86    if (args_info.output_given){
87      xyzFileName = args_info.output_arg;
88    } else {
# Line 96 | Line 92 | int main(int argc, char* argv[]){
92    
93    //parse md file and set up the system
94    SimCreator creator;
95 <  SimInfo* info = creator.createSim(mdFileName, false);
95 >  SimInfo* info = creator.createSim(dumpFileName, false);
96    
97 <  
102 <  
97 >
98    //create visitor list
99    CompositeVisitor* compositeVisitor = new CompositeVisitor();
100      
# Line 152 | Line 147 | int main(int argc, char* argv[]){
147    
148    //create wrapping visitor
149    
150 <  if(args_info.periodicBox_flag){
151 <    WrappingVisitor* wrappingVisitor = new WrappingVisitor(info);
152 <    compositeVisitor->addVisitor(wrappingVisitor, 400);
153 <  }
150 >  //if(args_info.periodicBox_flag){
151 >  //  WrappingVisitor* wrappingVisitor = new WrappingVisitor(info);
152 >  //  compositeVisitor->addVisitor(wrappingVisitor, 400);
153 >  //}
154  
155    //create replicate visitor
156    if(args_info.repeatX_given > 0 || args_info.repeatY_given > 0 ||args_info.repeatY_given > 0){
# Line 202 | Line 197 | int main(int argc, char* argv[]){
197    Molecule* mol;
198    StuntDouble* integrableObject;
199    RigidBody* rb;
200 +  Vector3d molCom;
201 +  Vector3d newMolCom;
202 +  Vector3d displacement;
203 +  Mat3x3d hmat;
204 +  Snapshot* currentSnapshot;
205        
206    for (int i = 0; i < nframes; i += args_info.frame_arg){
207      dumpReader->readFrame(i);
208 <    
208 >
209 >    //wrapping the molecule
210 >    if(args_info.periodicBox_flag) {
211 >      currentSnapshot = info->getSnapshotManager()->getCurrentSnapshot();    
212 >      for (mol = info->beginMolecule(miter); mol != NULL; mol = info->nextMolecule(miter)) {
213 >          molCom = mol->getCom();
214 >          newMolCom = molCom;
215 >          currentSnapshot->wrapVector(newMolCom);
216 >          displacement = newMolCom - molCom;
217 >        for (integrableObject = mol->beginIntegrableObject(iiter); integrableObject != NULL;
218 >             integrableObject = mol->nextIntegrableObject(iiter)) {  
219 >          integrableObject->setPos(integrableObject->getPos() + displacement);
220 >        }
221 >      }    
222 >    }
223      //update atoms of rigidbody
224      for (mol = info->beginMolecule(miter); mol != NULL; mol = info->nextMolecule(miter)) {
225        

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines