Changeset 2717 for trunk/MagicSoft
- Timestamp:
- 12/18/03 17:30:25 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2716 r2717 12 12 * manalysis/MCalibrationPix.cc 13 13 - introduced error calculation for the F-Factor method 14 15 * manalysis/MCalibrate.cc 16 - replace pix.IsValid by pix.IsBlindPixelMethodValid() which more 17 what is checked exactly 14 18 15 19 * macros/calibration.C -
trunk/MagicSoft/Mars/macros/calibration.C
r2660 r2717 163 163 MHCamera &disp0 = *h.GetHistByName(); 164 164 MHCamera disp1 (geomcam, "MCalibrationCam;q", "Fitted Mean Charges"); 165 // MHCamera disp2 (geomcam, "MCalibrationCam;errq", "Error of Fitted Mean Charges");166 165 MHCamera disp3 (geomcam, "MCalibrationCam;sigmaq", "Sigma of Fitted Mean Charges"); 167 // MHCamera disp4 (geomcam, "MCalibrationCam;errsigmaq", "Error of Sigma of Fitted Mean Charges");168 166 MHCamera disp5 (geomcam, "MCalibrationCam;probq", "Probability of Fit"); 169 167 MHCamera disp6 (geomcam, "MCalibrationCam;t", "Arrival Times"); … … 177 175 MHCamera disp14 (geomcam, "MCalibrationCam;photons", "Nr. of Photons (Blind Pixel Method)"); 178 176 MHCamera disp15 (geomcam, "MCalibrationCam;convphot", "Conversion Factor (Blind Pixel Method)"); 179 MHCamera disp16 (geomcam, "MCalibrationCam;sig ma/charge", "Sigma^2 per Charge^2");177 MHCamera disp16 (geomcam, "MCalibrationCam;sigsqchargesq", "Sigma Square per Charges Square"); 180 178 181 179 disp1.SetCamContent(*cam, 0); 182 180 disp1.SetCamError(*cam,1); 183 // disp2.SetCamContent(*cam, 1);184 181 185 182 disp3.SetCamContent(*cam, 2); 186 183 disp3.SetCamError(*cam,3); 187 // disp4.SetCamContent(*cam, 3); 184 188 185 disp5.SetCamContent(*cam, 4); 189 186 … … 200 197 201 198 disp12.SetCamContent(*cam, 11); 202 disp13.SetCamContent(*cam, 12); 203 disp14.SetCamContent(*cam, 13); 204 disp15.SetCamContent(*cam, 14); 205 disp16.SetCamContent(*cam, 15); 199 disp12.SetCamError(*cam, 12); 200 201 disp13.SetCamContent(*cam, 13); 202 disp13.SetCamError(*cam, 14); 203 204 disp14.SetCamContent(*cam, 15); 205 disp15.SetCamContent(*cam, 16); 206 disp16.SetCamContent(*cam, 17); 206 207 207 208 … … 225 226 MStatusDisplay *d3 = new MStatusDisplay; 226 227 227 // Set update time to 1s228 d3->SetUpdateTime( 1000);228 // Set update time to 3s 229 d3->SetUpdateTime(3000); 229 230 230 231 TCanvas *c1 = &d3->AddTab("Fitted Charges"); -
trunk/MagicSoft/Mars/manalysis/MCalibrate.cc
r2714 r2717 137 137 MCalibrationPix &pix = (*fCalibrations)[pixid]; 138 138 139 if (pix.Is Valid())139 if (pix.IsBlindPixelMethodValid()) 140 140 { 141 141 MExtractedSignalPix &sig = (*fSignals)[pixid]; -
trunk/MagicSoft/Mars/mhist/MHCalibrationBlindPixel.cc
r2699 r2717 420 420 { 421 421 422 //423 // The number 100 is necessary because it is the internal binning424 // of ROOT functions. A call to SetNpx() does NOT help425 // If you find another solution which WORKS!!, please tell me!!426 //427 422 Int_t nbins = 50; 428 423
Note:
See TracChangeset
for help on using the changeset viewer.