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

Comparing trunk/OOPSE-3.0/src/applications/dynamicProps/VCorrFunc.cpp (file contents):
Revision 2037 by tim, Wed Feb 16 19:36:30 2005 UTC vs.
Revision 2204 by gezelter, Fri Apr 15 22:04:00 2005 UTC

# Line 42 | Line 42 | VCorrFunc::VCorrFunc(SimInfo* info, const std::string&
42   #include "applications/dynamicProps/VCorrFunc.hpp"
43  
44   namespace oopse {
45 < VCorrFunc::VCorrFunc(SimInfo* info, const std::string& filename, const std::string& sele1, const std::string& sele2)
45 >  VCorrFunc::VCorrFunc(SimInfo* info, const std::string& filename, const std::string& sele1, const std::string& sele2)
46      : ParticleTimeCorrFunc(info, filename, sele1, sele2, DataStorage::dslVelocity){
47  
48 <    setCorrFuncType("Velocity Correlation Function");
49 <    setOutputName(getPrefix(dumpFilename_) + ".vcorr");
48 >      setCorrFuncType("Velocity Correlation Function");
49 >      setOutputName(getPrefix(dumpFilename_) + ".vcorr");
50  
51 < }
51 >    }
52  
53 < double VCorrFunc::calcCorrVal(int frame1, int frame2, StuntDouble* sd1,  StuntDouble* sd2) {
53 >  double VCorrFunc::calcCorrVal(int frame1, int frame2, StuntDouble* sd1,  StuntDouble* sd2) {
54      Vector3d v1 =sd1->getVel(frame1);
55      Vector3d v2 = sd2->getVel(frame2);
56  
57      return dot(v1, v2);
58 < }
58 >  }
59  
60   }
61  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines