- Timestamp:
- 06/14/08 11:16:05 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8952 r8954 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 22 2008/06/14 Thomas Bretz 23 24 * mtrigger/MFTriggerPattern.cc: 25 - improved documentation 26 27 * mars.cc, mbase/MStatusDisplay.cc: 28 - changed the M in MARS to "Modular" 29 - rpelaced year in copyright by current year 30 31 * datacenter/macros/plotdb.C: 32 - increased range for the rate of the calibration events 33 34 * mastro/MAstro.cc: 35 - included math.h for darwin 36 37 * mjobs/MJCalibrateSignal.cc: 38 - changed the named of the MFTriggerPattern 39 40 20 41 21 42 -
trunk/MagicSoft/Mars/datacenter/macros/plotdb.C
r8947 r8954 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: plotdb.C,v 1.4 1 2008-06-12 17:35:26tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: plotdb.C,v 1.42 2008-06-14 10:16:04 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 564 564 //plot.Plot("100*Calibration.fRateSumEvts/Calibration.fRateTrigEvts", 0, 500, 1); 565 565 plot.SetDescription("Average rate of events with calibration trigger;R [Hz]", "RateCal"); 566 plot.Plot("Calibration.fRateCalEvts", 0, 50, 1);566 plot.Plot("Calibration.fRateCalEvts", 0, 75, 1); 567 567 plot.SetDescription("Average rate of events with pedestal trigger;R [Hz]", "RatePed"); 568 568 plot.Plot("Calibration.fRatePedEvts", 0, 50, 1); -
trunk/MagicSoft/Mars/mars.cc
r8907 r8954 36 36 gLog << "==================================================" << endl; 37 37 gLog << " MARS V" << MARSVER << endl; 38 gLog << " Magic Analysis and Reconstruction Software"<< endl;38 gLog << " Modular Analysis and Reconstruction Software" << endl; 39 39 gLog << " Compiled with ROOT v" << ROOT_RELEASE << " on <" << __DATE__ << ">" << endl; 40 40 gLog << "==================================================" << endl; -
trunk/MagicSoft/Mars/mastro/MAstro.cc
r8907 r8954 30 30 //////////////////////////////////////////////////////////////////////////// 31 31 #include "MAstro.h" 32 33 #include <math.h> // fmod on darwin 32 34 33 35 #include <iostream> -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r8938 r8954 478 478 479 479 // Add copyright notice 480 l = new TGLabel(f, "(c) MAGIC Software Development, 2000-2007");480 l = new TGLabel(f, Form("(c) MARS Software Development, 2000-%d", MTime(-1).Year()); 481 481 fList->Add(l); 482 482 f->AddFrame(l, layb); … … 2607 2607 PSToolsTextNDC(*ps, 0, 1.015, TString(" ")+n->GetName()); 2608 2608 ps->SetTextAlign(21); // cent top 2609 PSToolsTextNDC(*ps, 0.5, 1.015, TString("MARS - MagicAnalysis and Reconstruction Software - ")+d.AsString());2609 PSToolsTextNDC(*ps, 0.5, 1.015, TString("MARS V"MARSVER" - Modular Analysis and Reconstruction Software - ")+d.AsString()); 2610 2610 ps->SetTextAlign(31); // right top 2611 2611 PSToolsTextNDC(*ps, 1, 1.015, MString::Format("Page No.%i (%i) ", page++, i)); … … 2619 2619 PSToolsTextNDC(*ps, 0, -0.015, TString(" ")+txt); 2620 2620 ps->SetTextAlign(31); // right top 2621 PSToolsTextNDC(*ps, 1, -0.015, "(c) 2000-2007, Thomas Bretz ");2621 PSToolsTextNDC(*ps, 1, -0.015, Form("(c) 2000-%d, Thomas Bretz ", MTime(-1).Year())); 2622 2622 } 2623 2623 -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r8952 r8954 440 440 // calibration events in such data, so this is fine. 441 441 // We allow only cosmics triggered events to pass (before prescaling) 442 MFTriggerPattern fcalped ;442 MFTriggerPattern fcalped("SelectTrigEvts"); 443 443 fcalped.SetInverted(); 444 444 fcalped.SetDefault(kTRUE); … … 449 449 450 450 // This will skip interleaved events with a cal- or ped-trigger 451 MContinue contcalped(&fcalped, "Cont TrigPattern");451 MContinue contcalped(&fcalped, "ContNonTrigger"); 452 452 453 453 // Create the pedestal subtracted raw-data … … 576 576 // trigger pattern is available do not execute it 577 577 // The selection is done before prescaling. 578 MFTriggerPattern fcalib(" CalibFilter");578 MFTriggerPattern fcalib("SelectCalEvts"); 579 579 fcalib.SetDefault(kFALSE); 580 580 fcalib.DenyAll();
Note:
See TracChangeset
for help on using the changeset viewer.