Ignore:
Timestamp:
Apr 28, 2008, 11:36:11 AM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
8efbfc
Parents:
34d37c
Message:

All filenames (const char *) have been transferred to defs.hpp

Filenames have been transformed into #define's into order to centralise these values. Parser.hpp had these already and they were streamlined to match defs.hpp (which is now included in parser.hpp)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/moleculelist.cpp

    r34d37c rd982bb  
    385385  strcpy(PathBackup, configuration->GetDefaultPath());
    386386  // open file for the total energy factor
    387   sprintf(TEFilename, "%s/%s%s", PathBackup, prefix, "TE-Factors.dat");
     387  sprintf(TEFilename, "%s/%s%s", PathBackup, prefix, TEFACTORSFILE);
    388388  output.open(TEFilename, ios::out);
    389389  // output TEList (later to file AtomicTEList.dat)
     
    402402 
    403403  // open file for the force factors
    404   sprintf(TEFilename, "%s/%s%s", PathBackup, prefix, "Forces-Factors.dat");
     404  sprintf(TEFilename, "%s/%s%s", PathBackup, prefix, FORCESFILE);
    405405  output.open(TEFilename, ios::out);
    406406  //cout << Verbose(1) << "Final AtomicForcesList: ";
Note: See TracChangeset for help on using the changeset viewer.