Changeset 6453 for trunk/MagicSoft/Mars
- Timestamp:
- 02/14/05 11:15:39 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6403 r6453 22 22 -*-*- END OF LINE -*-*- 23 23 24 2005/02/14 Thomas Bretz 25 26 * callisto.cc, ganymed.cc, star.cc: 27 - added some more information to '--help' output 28 - replaced MSequences by MDataSet 29 30 * mjobs/MJCut.[h,cc]: 31 - replaced MSequences by MDataSet 32 - write MEnergyEst 33 - recalculate MHillasSrc 34 35 * mjobs/MSequences.[h,cc]: 36 - removed 37 38 * mjobs/MDataSet.[h,cc]: 39 - added 40 41 42 24 43 2005/02/12 Abelardo Moralejo 25 44 … … 45 64 46 65 66 47 67 2005/02/12 Markus Gaug 48 68 … … 61 81 62 82 83 63 84 2005/02/12 Abelardo Moralejo 85 64 86 * mmc/MMcTrig.hxx 65 87 - Added getter GetNumFirstLevel. This is necessary if that data … … 67 89 already a getter, but it is called GetFirstLevel and hence not 68 90 recognized. 91 92 69 93 70 94 2005/02/11 Abelardo Moralejo -
trunk/MagicSoft/Mars/callisto.cc
r6282 r6453 46 46 gLog << " callisto [-c] [-y] [options] sequence.txt" << endl << endl; 47 47 gLog << " Arguments:" << endl; 48 gLog << " sequence.txt: An ascii file defining a sequence of runs" << endl; 48 gLog << " sequence.txt: Ascii file defining a sequence of runs" << endl; 49 gLog << " For more details see MSequence" << endl; 49 50 gLog << " Root Options:" << endl; 50 51 gLog << " -b Batch mode (no graphical output to screen)" << endl<<endl; -
trunk/MagicSoft/Mars/ganymed.cc
r6282 r6453 15 15 #include "MStatusDisplay.h" 16 16 17 #include "M Sequences.h"17 #include "MDataSet.h" 18 18 #include "MJCut.h" 19 19 … … 43 43 gLog << " ganymed [-c] [-y] [options] sequences.txt" << endl << endl; 44 44 gLog << " Arguments:" << endl; 45 gLog << " sequences.txt: An ascii file defining a collection of sequences" << endl; 45 gLog << " dataset.txt: Ascii file defining a collection of sequences" << endl; 46 gLog << " For more details see MDataSet." << endl; 46 47 gLog << " Root Options:" << endl; 47 48 gLog << " -b Batch mode (no graphical output to screen)" << endl<<endl; … … 142 143 // Setup sequence and check its validity 143 144 // 144 M Sequencesseq(kSequences);145 MDataSet seq(kSequences); 145 146 if (kNumAnalysis>=0) 146 147 seq.SetNumAnalysis(kNumAnalysis); -
trunk/MagicSoft/Mars/mjobs/MJCut.cc
r6282 r6453 56 56 #include "../mhflux/MAlphaFitter.h" 57 57 #include "MBinning.h" 58 #include "M Sequences.h"58 #include "MDataSet.h" 59 59 #include "MParameters.h" 60 60 #include "MObservatory.h" … … 255 255 // "MHillasSrc" to "Events" 256 256 // "MHadronness" to "Events" yes 257 // "MEnergyEst" to "Events" yes 257 258 // "DataType" to "Events" 258 259 // … … 262 263 write.AddContainer("MHillasSrc", "Events"); 263 264 write.AddContainer("MHadronness", "Events", kFALSE); 265 write.AddContainer("MEnergyEst", "Events", kFALSE); 264 266 write.AddContainer("DataType", "Events"); 265 267 … … 271 273 } 272 274 273 Bool_t MJCut::ProcessFile(const M Sequences&seq)275 Bool_t MJCut::ProcessFile(const MDataSet &seq) 274 276 { 275 277 if (!seq.IsValid()) … … 371 373 // How to get source position from off- and on-data? 372 374 MSrcPosCalc scalc; 373 374 //MHillasCalc hcalc; 375 //hcalc.SetFlags(MHillasCalc::kCalcHillasSrc); 375 MHillasCalc hcalc; 376 hcalc.SetFlags(MHillasCalc::kCalcHillasSrc); 376 377 377 378 MTaskList tlist2; 379 tlist2.AddToList(&scalc); 380 tlist2.AddToList(&hcalc); 378 381 tlist2.AddToList(&taskenv1); 379 382 tlist2.AddToList(&taskenv2); … … 386 389 if (!fWriteOnly) 387 390 tlist2.AddToList(&ffs); 388 //tlist2.AddToList(&scalc);389 //tlist2.AddToList(&hcalc);390 391 tlist2.AddToList(&cont2); 391 392 if (!fWriteOnly) -
trunk/MagicSoft/Mars/mjobs/MJCut.h
r6282 r6453 7 7 8 8 class MTask; 9 class M Sequences;9 class MDataSet; 10 10 class MWriteRootFile; 11 11 … … 37 37 ~MJCut(); 38 38 39 Bool_t ProcessFile(const M Sequences&seq);39 Bool_t ProcessFile(const MDataSet &seq); 40 40 41 41 void EnableStorageOfSummary(Bool_t b=kTRUE) { fStoreSummary = b; } // See SetNameSummary -
trunk/MagicSoft/Mars/star.cc
r6253 r6453 43 43 gLog << " star [options] sequence.txt" << endl << endl; 44 44 gLog << " Arguments:" << endl; 45 gLog << " sequence.txt: An ascii file defining a sequence of runs" << endl; 45 gLog << " sequence.txt: Ascii file defining a sequence of runs" << endl; 46 gLog << " For more details see MSequence" << endl; 46 47 gLog << " Root Options:" << endl; 47 48 gLog << " -b Batch mode (no graphical output to screen)" << endl<<endl;
Note:
See TracChangeset
for help on using the changeset viewer.