Changeset 7406 for trunk/MagicSoft/Mars
- Timestamp:
- 11/16/05 16:11:08 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7405 r7406 18 18 19 19 -*-*- END OF LINE -*-*- 20 2005/11/15 Daniela Dorner 20 2005/11/16 Thomas Bretz 21 22 * datacenter/macros/plotdb.C: 23 - added new plot for camera inhomgeneity 24 25 26 27 2005/11/16 Daniela Dorner 21 28 22 29 * datacenter/macros/fillstar.C, setupdb.C: … … 38 45 - implemented long awaiting E^2dN/dE plot 39 46 - updated displaying result (formula) 47 48 * msql/MSQLServer.[h,cc]: 49 - added output of database name to GetName 40 50 41 51 … … 113 123 * mreport/MReportTrigger.cc: 114 124 - fixed a typo of the indentation (two commands in one line) 115 116 * msql/MSQLServer.[h,cc]:117 - added output of database name to GetName118 125 119 126 * mjobs/MDataSet.cc: -
trunk/MagicSoft/Mars/datacenter/macros/plotdb.C
r7388 r7406 297 297 plot.SetDescription("Mean Signal inner Camera;S_{I} [phe]", "SignalI"); 298 298 plot.Plot("Calibration.fMeanSignalInner", 0, 7.0, 0.05); 299 plot.SetDescription("Mean PulsePos;T", "PulPos"); 300 plot.Plot("Calibration.fPulsePosMean", 1, 15.0, 0.1); 301 plot.SetDescription("Rms PulsePos;T", "PulRms"); 302 plot.Plot("Calibration.fPulsePosRms", 0, 2.0, 0.1); 299 303 //from star*.root 300 304 //muon … … 305 309 plot.SetDescription("Muon Rate after Muon Cuts;R [Hz]"); 306 310 plot.Plot("Star.fMuonRate", 0, 2.0, 0.05); 311 //quality 312 plot.SetDescription("Camera Inhomogeneity;\\sigma [%]", "Inhom"); 313 plot.Plot("Star.fInhomogeneity", 0, 100, 1); 307 314 //imgpar 308 315 plot.SetDescription("Mean Number of Islands after cleaning;N [#]", "NumIsl"); … … 350 357 351 358 MStatusDisplay *d = new MStatusDisplay; 359 d->SetWindowName(serv.GetName()); 360 d->SetTitle(serv.GetName()); 352 361 353 362 MPlot plot(serv); … … 355 364 plot.SetRequestRange(from, to); 356 365 plotall(plot); 357 //d->SaveAsPS("plotdb.ps"); 366 d->SaveAsRoot("plotdb.root"); 367 d->SaveAsPS("plotdb.ps"); 358 368 } 359 369 … … 376 386 377 387 MStatusDisplay *d = new MStatusDisplay; 388 d->SetWindowName(serv.GetName()); 389 d->SetTitle(serv.GetName()); 390 378 391 MPlot plot(serv); 379 392 plot.SetDisplay(d); 380 393 plot.SetRequestPeriod(period); 381 394 plotall(plot); 382 //d->SaveAsPS("plotdb.ps"); 395 d->SaveAsRoot("plotdb.root"); 396 d->SaveAsPS("plotdb.ps"); 383 397 }
Note:
See TracChangeset
for help on using the changeset viewer.