fixed some 'int' vs 'unsigned int' warnings

This commit is contained in:
nemu
2008-01-15 09:55:30 +00:00
parent a2950df25b
commit e712735cb6
4 changed files with 7 additions and 7 deletions

View File

@@ -77,7 +77,7 @@ class PRunBase
protected:
bool fValid;
unsigned int fRunNo; ///< number of the run within the msr file
int fRunNo; ///< number of the run within the msr file
PMsrHandler *fMsrInfo; ///< msr-file handler
PMsrRunStructure *fRunInfo; ///< run info used to filter out needed infos for the run
PRunDataHandler *fRawData; ///< holds the raw run data

View File

@@ -166,7 +166,7 @@ class PTheory
virtual double Func(register double t, const vector<double>& paramValues, const vector<double>& funcValues) const;
private:
virtual unsigned int SearchDataBase(TString name);
virtual int SearchDataBase(TString name);
virtual void MakeCleanAndTidyTheoryBlock(PMsrLines* fullTheoryBlock);
virtual double Asymmetry(const vector<double>& paramValues, const vector<double>& funcValues) const;