Changeset 19728 for trunk/Mars
- Timestamp:
- 10/05/19 20:53:12 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/ceres.cc
r19703 r19728 5 5 6 6 #include <TVector2.h> 7 8 #include "zofits.h" 7 9 8 10 #include "MArray.h" … … 78 80 gLog << " --run-number=# Optionally set the run number to simulate" << endl; 79 81 gLog << " --fits Write FITS output files instead of root files." << endl; 82 gLog << " --zfits-rows Number of rows compressed into one tile (see zofit.h)." << endl; 83 gLog << " --zfits-threads Number of threads for compression (see zofits.h)." << endl; 80 84 gLog << " --list The specified .txt file contains a file list" << endl; 81 85 gLog << " (see MDirIter::ReadFile)." << endl << endl; … … 181 185 const Bool_t kFileList = arg.HasOnlyAndRemove("--list"); 182 186 187 // This is here because it is global 188 zofits::DefaultNumRowsPerTile(arg.GetIntAndRemove("--zfits-rows", 100)); 189 zofits::DefaultNumThreads(arg.GetIntAndRemove("--zfits-threads", 0)); 190 183 191 Int_t opmode = -1; 184 192 if (TString("data").BeginsWith(kOpMode, TString::kIgnoreCase))
Note:
See TracChangeset
for help on using the changeset viewer.