I wrote arrayfit and it worked.
Then I needed to modify libArray code so that other portions of the code could use the pre-computed fit data. Today I discovered that arrayfit was messed up. That is now fixed.
This commit is contained in:
parent
3b6e96a06a
commit
119d46058b
1 changed files with 1 additions and 6 deletions
|
@ -146,12 +146,7 @@ int main( int argc, char **argv ) {
|
||||||
usage( argv[0] );
|
usage( argv[0] );
|
||||||
}
|
}
|
||||||
|
|
||||||
SGPath outfile = infile.base();
|
SGPath outfile = infile;
|
||||||
cout << outfile.str() << endl;
|
|
||||||
while ( outfile.extension().length() ) {
|
|
||||||
outfile = outfile.base();
|
|
||||||
cout << outfile.str() << endl;
|
|
||||||
}
|
|
||||||
outfile.concat( ".fit.gz" );
|
outfile.concat( ".fit.gz" );
|
||||||
|
|
||||||
cout << "Input file = " << infile.str() << endl;
|
cout << "Input file = " << infile.str() << endl;
|
||||||
|
|
Loading…
Reference in a new issue