Changeset 1082 for trunk/MagicSoft/Mars/mraw/MRawEvtData.cc
- Timestamp:
- 11/15/01 12:06:46 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mraw/MRawEvtData.cc
r1076 r1082 16 16 ! 17 17 ! 18 ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)18 ! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@uni-sw.gwdg.de> 19 19 ! 20 20 ! Copyright: MAGIC Software Development, 2000-2001 … … 49 49 50 50 #include "MRawEvtData.h" 51 52 #include <iomanip.h>53 51 54 52 #include <fstream.h> … … 155 153 fLog->unsetf(ios::showbase); 156 154 157 *fLog << dec ;155 *fLog << dec << all; 158 156 *fLog << "HiGain: " << nHiPix << " Pixels with " << (Int_t)nHiSamp << " Samples" << endl; 159 157 *fLog << "LoGain: " << nLoPix << " Pixels with " << (Int_t)nLoSamp << " Samples";; … … 213 211 if (GetNumPixels()==0) 214 212 { 215 *fLog << "Sorry, no pixel to draw!" << endl;213 *fLog << warn << "Sorry, no pixel to draw!" << endl; 216 214 return; 217 215 } … … 229 227 num= GetNumPixels(); 230 228 231 *fLog << "Drawing Graph: Pixel #" << num << " of " << (int)GetNumPixels() << endl;229 *fLog << inf << "Drawing Graph: Pixel #" << num << " of " << (int)GetNumPixels() << endl; 232 230 233 231 const Int_t n = GetNumHiGainSamples(); … … 288 286 } 289 287 290 *fLog << dbginf << "Warning - You must specify either 'GRAPH' or 'HIST'" << endl;288 *fLog << warn << dbginf << "Warning - You must specify either 'GRAPH' or 'HIST'" << endl; 291 289 } 292 290 … … 375 373 if (nSamp && ns!=nSamp) 376 374 { 377 *fLog << "RawEvtData::AddPixel: Error, number of samples in ";375 *fLog << err << "RawEvtData::AddPixel: Error, number of samples in "; 378 376 *fLog << "TArrayC doesn't match actual number" << endl; 379 377 return;
Note:
See TracChangeset
for help on using the changeset viewer.