Ignore:
Timestamp:
Jul 23, 2009, 11:23:59 AM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
59a745
Parents:
09f4dc (diff), 14178b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'Thermostat'

Conflicts:

.gitignore
Makefile.am
molecuilder/src/analyzer.cpp
molecuilder/src/builder.cpp
molecuilder/src/config.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/molecules.cpp
molecuilder/src/molecules.hpp

  • config::SaveMPQC() has different call parameters
  • analyzer and joiner had conflicts due to Chi and ChiPAS values
  • molecule::VerletForceIntegration() is slightly different too, but Thermostat supposedly is old version
File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/builder.cpp

    r09f4dc r3b470f  
    822822            cout << "\t-p <file>\tParse given xyz file and create raw config file from it." << endl;
    823823            cout << "\t-P <file>\tParse given forces file and append as an MD step to config file via Verlet." << endl;
     824            cout << "\t-L <step0> <step1> <prefix>\tStore a linear interpolation between two configurations <step0> and <step1> into single config files with prefix <prefix> and as Trajectories into the current config file." << endl;
    824825            cout << "\t-r\t\tConvert file from an old pcp syntax." << endl;
    825826            cout << "\t-t x1 x2 x3\tTranslate all atoms by this vector (x1,x2,x3)." << endl;
     
    10651066              }
    10661067              break;
     1068            case 'L':
     1069              ExitFlag = 1;
     1070              SaveFlag = true;
     1071              cout << Verbose(1) << "Linear interpolation between configuration " << argv[argptr] << " and " << argv[argptr+1] << "." << endl;
     1072              if (!mol->LinearInterpolationBetweenConfiguration((ofstream *)&cout, atoi(argv[argptr]), atoi(argv[argptr+1]), argv[argptr+2], configuration))
     1073                cout << Verbose(2) << "Could not store " << argv[argptr+2] << " files." << endl;
     1074              else
     1075                cout << Verbose(2) << "Steps created and " << argv[argptr+2] << " files stored." << endl;
     1076              argptr+=3;
     1077              break;
    10671078            case 'P':
    10681079              ExitFlag = 1;
     
    10731084                SaveFlag = true;
    10741085                cout << Verbose(1) << "Parsing forces file and Verlet integrating." << endl;
    1075                 if (!mol->VerletForceIntegration(argv[argptr], configuration.Deltat, configuration.GetIsAngstroem()))
     1086                if (!mol->VerletForceIntegration((ofstream *)&cout, argv[argptr], configuration))
    10761087                  cout << Verbose(2) << "File not found." << endl;
    10771088                else
Note: See TracChangeset for help on using the changeset viewer.