Changeset 5764
- Timestamp:
- 01/10/05 11:49:28 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5760 r5764 32 32 - added two new possible UnCalibrated_t flags for the hi-lo 33 33 calibration 34 35 * macros/calibration.C 36 - add the calls to: 37 MArray::Class()->IgnoreTObjectStreamer(); 38 MParContainer::Class()->IgnoreTObjectStreamer(); 39 in main. 34 40 35 41 -
trunk/MagicSoft/Mars/macros/calibration.C
r5737 r5764 55 55 // 56 56 ////////////////////////////////////////////////////////////////////////////////////////// 57 #include <TStyle.h> 58 #include <TObject.h> 59 #include <TObjectTable.h> 60 #include <TCanvas.h> 61 #include <TPad.h> 62 #include <TH1.h> 63 #include <TPaveStats.h> 64 #include <TApplication.h> 65 #include <TClass.h> 66 57 67 #include "getExtractor.C" 58 68 … … 71 81 #include "MGeomCamMagic.h" 72 82 73 #include "TStyle.h"74 #include "TObject.h"75 #include "TObjectTable.h"76 #include "TCanvas.h"77 #include "TPad.h"78 #include "TH1.h"79 #include "TPaveStats.h"80 81 83 using namespace std; 82 84 … … 101 103 // the default start data run 102 104 // 103 static const Int_t datrun1 = 39 900;105 static const Int_t datrun1 = 39000; 104 106 // 105 107 // the default last calibration run (if 0, only one run is taken, otherwise consecutive runs … … 299 301 return 2; 300 302 301 // return 0;302 303 // 303 304 // The next lines are the use the Print() function and have … … 367 368 calibloop.SetDisplay(display); 368 369 calibloop.SetBadPixels(calloop.GetBadPixels()); 369 calibloop.SetNoStorage(!use storage);370 calibloop.SetNoStorage(!useStorage); 370 371 371 372 if (!calibloop.ProcessFile(pedloop1.GetPedestalCam(),timeandcharge ? pedloop2.GetPedestalCam() : pedloop1.GetPedestalCam(), calloop.GetCalibrationCam(),calloop.GetQECam(), calloop.GetRelTimeCam())) … … 475 476 int main(int argc, char **argv) 476 477 { 478 479 480 MArray::Class()->IgnoreTObjectStreamer(); 481 MParContainer::Class()->IgnoreTObjectStreamer(); 477 482 // 478 483 // Evaluate arguments
Note:
See TracChangeset
for help on using the changeset viewer.