Changeset 3963 for trunk/MagicSoft/Mars
- Timestamp:
- 05/04/04 17:53:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.cc
r3904 r3963 86 86 // - fAverageHiGainSectors, fAverageLoGainSectors 87 87 // 88 // Initializes to 0 entries:89 // - fAverageAreaNum90 // - fAverageAreaRelSigma91 // - fAverageAreaRelSigmaVar92 // - fAverageAreaSat93 // - fAverageAreaSigma94 // - fAverageAreaSigmaVar95 // - fAverageSectorNum96 // - fRunNumbers97 //98 88 // Initializes: 99 89 // - fPulserFrequency to fgPulserFrequency 100 90 // 101 91 MHCalibrationCam::MHCalibrationCam(const char *name, const char *title) 102 : fAverageAreaNum(0), 103 fAverageAreaRelSigma(0), 104 fAverageAreaRelSigmaVar(0), 105 fAverageAreaSat(0), 106 fAverageAreaSigma(0), 107 fAverageAreaSigmaVar(0), 108 fAverageSectorNum(0), 109 fRunNumbers(0), 110 fBadPixels(NULL), fCam(NULL), fGeom(NULL), fRunHeader(NULL) 92 : fBadPixels(NULL), fCam(NULL), fGeom(NULL), fRunHeader(NULL) 111 93 { 112 94 fName = name ? name : "MHCalibrationCam"; … … 359 341 cam->fAverageAreaRelSigmaVar = fAverageAreaRelSigmaVar; 360 342 cam->fAverageSectorNum = fAverageSectorNum; 343 cam->fRunNumbers = fRunNumbers; 361 344 362 345 cam->fPulserFrequency = fPulserFrequency; 346 cam->fAverageNbins = fAverageNbins; 363 347 364 348 return cam; -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc
r3961 r3963 96 96 const Double_t MHCalibrationChargeBlindPix::gkElectronicAmpErr = 0.002; 97 97 98 const Int_t MHCalibrationChargeBlindPix::fgChargeNbins = 5300;98 const Int_t MHCalibrationChargeBlindPix::fgChargeNbins = 300; 99 99 const Axis_t MHCalibrationChargeBlindPix::fgChargeFirst = -100.5; 100 100 const Axis_t MHCalibrationChargeBlindPix::fgChargeLast = 5199.5; -
trunk/MagicSoft/Mars/mhist/MHCamera.cc
r3957 r3963 1618 1618 { 1619 1619 half[j]->SetLineColor(kRed+i+2*j); 1620 half[j]->SetDirectory( 0);1620 half[j]->SetDirectory(NULL); 1621 1621 half[j]->SetBit(kCanDelete); 1622 1622 half[j]->Draw("same"); -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r3954 r3963 841 841 MExtractSlidingWindow extract2; 842 842 MExtractTimeSpline timespline; 843 MArrivalTimeCalc arrcalc; 843 844 MCalibrationChargeCalc calcalc; 844 845 MCalibrationRelTimeCalc timecalc; … … 876 877 *fLog << warn << GetDescriptor() 877 878 << ": No extractor has been chosen, take default MExtractSlidingWindow " << endl; 878 tlist.AddToList(&extract2); 879 // tlist.AddToList(&extract2); 880 tlist.AddToList(&arrcalc); 879 881 } 880 882
Note:
See TracChangeset
for help on using the changeset viewer.