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 2224 by chrisfen, Thu May 12 19:43:48 2005 UTC vs.
Revision 2984 by gezelter, Wed Aug 30 21:04:04 2006 UTC

# Line 57 | Line 57
57   #include "selection/SelectionEvaluator.hpp"
58   #include "selection/SelectionManager.hpp"
59   #include "visitors/LipidTransVisitor.hpp"
60 + #include "visitors/AtomNameVisitor.hpp"
61  
62   using namespace oopse;
63  
# Line 67 | Line 68 | int main(int argc, char* argv[]){
68    
69    gengetopt_args_info args_info;
70    std::string dumpFileName;
70  std::string mdFileName;
71    std::string xyzFileName;
72    
73    //parse the command line option
# Line 83 | Line 83 | int main(int argc, char* argv[]){
83      exit(1);
84    }
85    
86  mdFileName = dumpFileName;
87  mdFileName = mdFileName.substr(0, mdFileName.rfind(".")) + ".md";
88
86    if (args_info.output_given){
87      xyzFileName = args_info.output_arg;
88    } else {
# Line 95 | 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 <  
101 <  
97 >
98    //create visitor list
99    CompositeVisitor* compositeVisitor = new CompositeVisitor();
100      
# Line 114 | Line 110 | int main(int argc, char* argv[]){
110    
111    LinearAtomVisitor* linearVisitor = new LinearAtomVisitor(info);
112    compositeVisitor->addVisitor(linearVisitor, 750);
113 +  if (args_info.gb_given) {
114 +    linearVisitor->addGayBerneAtomType(args_info.gb_arg);
115 +  }
116    
117 +  GBLipidAtomVisitor* gbLipidVisitor = new GBLipidAtomVisitor(info);
118 +  compositeVisitor->addVisitor(gbLipidVisitor, 740);
119 +
120    //create default atom visitor
121    DefaultAtomVisitor* defaultAtomVisitor = new DefaultAtomVisitor(info);
122    compositeVisitor->addVisitor(defaultAtomVisitor, 700);
# Line 124 | Line 126 | int main(int argc, char* argv[]){
126      WaterTypeVisitor* waterTypeVisitor = new WaterTypeVisitor;
127      compositeVisitor->addVisitor(waterTypeVisitor, 600);
128    }
129 +
130 +  if (args_info.basetype_flag) {
131 +      AtomNameVisitor* atomNameVisitor = new AtomNameVisitor(info);
132 +      compositeVisitor->addVisitor(atomNameVisitor, 550);
133 +
134 +  }
135    
136    //create ZconsVisitor
137    if(args_info.zconstraint_flag){
# Line 139 | 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 189 | 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