Changeset 8243
- Timestamp:
- 01/11/07 14:15:24 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8242 r8243 18 18 19 19 -*-*- END OF LINE -*-*- 20 2007/01/11 Thomas Bretz 21 22 * mbase/MLogManip.cc: 23 - removed the obsolete include of MLog.h 24 25 * mbase/MLogManip.h: 26 - encapsulated an include in ifdefs 27 28 20 29 21 30 2007/01/11 Daniela Dorner -
trunk/MagicSoft/Mars/mbase/MLogManip.h
r7808 r8243 4 4 #include <iomanip> 5 5 6 #ifndef MARS_MLog 6 7 #include "MLog.h" 8 #endif 7 9 8 10 // --------------------- simple manipulators ----------------------- … … 19 21 return lout; 20 22 } 21 22 23 23 24 // ----------------------------- debug ----------------------------- -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.cc
r8203 r8243 1259 1259 if (hist.IsEmpty()) 1260 1260 { 1261 *fLog << warn << "Pixel 1261 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Hi-Gain histogram empty." << endl; 1262 1262 return; 1263 1263 } 1264 1264 if (hist.IsOnlyOverflow()) 1265 1265 { 1266 *fLog << warn << "Pixel 1266 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Hi-Gain histogram contains only overflows." << endl; 1267 1267 return; 1268 1268 } 1269 1269 if (hist.IsOnlyUnderflow()) 1270 1270 { 1271 *fLog << warn << "Pixel 1271 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Hi-Gain histogram contains only underflows." << endl; 1272 1272 return; 1273 1273 } … … 1366 1366 if (hist.IsOnlyOverflow()) 1367 1367 { 1368 *fLog << warn << "Pixel 1368 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Lo-Gain histogram contains only overflows." << endl; 1369 1369 return; 1370 1370 } 1371 1371 if (hist.IsOnlyUnderflow()) 1372 1372 { 1373 *fLog << warn << "Pixel 1373 *fLog << warn << "Pixel " << setw(4) << pix.GetPixId() << ": Lo-Gain histogram contains only underflows." << endl; 1374 1374 return; 1375 1375 } -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeCam.cc
r8210 r8243 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationChargeCam.cc,v 1.4 7 2006-11-02 19:50:53tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationChargeCam.cc,v 1.48 2007-01-11 14:14:37 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 960 960 if (histlo.GetSaturated() > fNumLoGainSaturationLimit*histlo.GetHGausHist()->GetEntries()) 961 961 { 962 *fLog << warn << "Pixel 962 *fLog << warn << "Pixel " << setw(4) << i << ": More than " << Form("%.1f%%", fNumLoGainSaturationLimit*100) << " lo-gains saturated." << endl; 963 963 bad.SetUncalibrated( MBadPixelsPix::kLoGainSaturation ); 964 964 if (IsOscillations()) … … 1020 1020 if (histlo.GetSaturated() > fNumLoGainSaturationLimit*histlo.GetHGausHist()->GetEntries()) 1021 1021 { 1022 *fLog << warn << "Area 1022 *fLog << warn << "Area " << setw(4) << j << ": More than " << Form("%.1f%%", fNumLoGainSaturationLimit*100) << " lo-gains saturated." << endl; 1023 1023 if (IsOscillations()) 1024 1024 histlo.CreateFourierSpectrum(); … … 1063 1063 if (histlo.GetSaturated() > fNumLoGainSaturationLimit*histlo.GetHGausHist()->GetEntries()) 1064 1064 { 1065 *fLog << warn << "Sector 1065 *fLog << warn << "Sector " << setw(4) << j << ": More than " << Form("%.1f%%", fNumLoGainSaturationLimit*100) << " lo-gains saturated." << endl; 1066 1066 bad.SetUncalibrated( MBadPixelsPix::kLoGainSaturation ); 1067 1067 if (IsOscillations()) -
trunk/MagicSoft/Mars/mhflux/MHEnergyEst.cc
r8047 r8243 435 435 h = (TH1D*)fHEnergy.Project3D("ey"); 436 436 h->SetBit(TH1::kNoStats); 437 h->SetTitle("Energy disribution: Monte Carlo E_{mc} (black), Estimated E_{est} ( green)");437 h->SetTitle("Energy disribution: Monte Carlo E_{mc} (black), Estimated E_{est} (blue)"); 438 438 h->SetXTitle("E [GeV]"); // E_mc 439 439 h->SetYTitle("Counts"); … … 450 450 h->SetDirectory(NULL); 451 451 h->SetMarkerStyle(kFullDotMedium); 452 h->SetLineColor(k Green);453 h->SetMarkerColor(k Green);452 h->SetLineColor(kBlue); 453 h->SetMarkerColor(kBlue); 454 454 h->Draw("same"); 455 455
Note:
See TracChangeset
for help on using the changeset viewer.