Changeset 2010 for trunk/MagicSoft
- Timestamp:
- 04/25/03 09:55:58 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2007 r2010 1 1 -*-*- END OF LINE -*-*- 2 2 3 2003/04/25: Thomas Bretz 4 5 * mfilter/MFEnergySlope.cc: 6 - removed obsolete PostProcess 7 8 * mdatacheck/MGDisplayAdc.cc: 9 - fixed a bug which caused nothing to beeing displayed if only 10 the Hi gains where existing (Exists->HasHi) 11 12 * mhist/MH.cc: 13 - small change to GetNewPad 14 15 * mhistmc/MHMcEnergyMigration.h: 16 - fixed the includes 17 18 19 3 20 2003/04/24: Abelardo Moralejo 4 21 5 22 * macros/rootlogon.C 6 - added gInterpreter->AddIncludePath(dir+"mhistmc"); 23 - added gInterpreter->AddIncludePath(dir+"mhistmc"); 24 25 7 26 8 27 2003/04/24: Thomas Bretz 9 28 29 * macros/rootlogon.C: 30 - added mimage 31 32 * macros/dohtml.C: 33 - added mhistmc 34 - added mimage 35 - added status.C 36 10 37 * mfilter/MFCT1Supercuts.[h,cc]: 11 38 - removed 12 39 13 40 * manalysis/MPadSchweizer.[h,cc]: 14 41 - renamed arguments of SetHistograms to Mars style … … 22 49 * manalysis/MSigmabarParam.h: 23 50 - added const qualifiers to getters 24 51 25 52 * mfileio/MWriteRootFile.[h,cc]: 26 53 - fixed support for UPDATE 27 54 28 55 * mfilter/MFEnergySlope.cc: 29 56 - cleaned … … 38 65 * mimage/MHillasSrc.[h,cc], mimage/MHHillasSrc.[h,cc]: 39 66 - like suggested by Wolfgang: removed Head-Tail 67 68 * mbase/MEvtLoop.cc: 69 - fixed a bug in the progress bar update at the end of the loop 40 70 41 71 -
trunk/MagicSoft/Mars/mdatacheck/MGDisplayAdc.cc
r1916 r2010 304 304 305 305 for (Int_t i=0; i<nhi; i++) 306 if (fHists-> Exists(i))306 if (fHists->HasHi(i)) 307 307 fHistoList->AddEntry(fHists->GetHistHi(i)->GetName(), i+1); 308 308 … … 327 327 fCanvas->Clear(); 328 328 329 if (!fHists->Exists(selected-1)) 329 const Int_t idx = selected-1; 330 331 if (!fHists->HasHi(idx)) 330 332 return; 331 333 332 const Int_t type = fHists->HasLo( selected-1) ? fHistoType : M_RADIO_HI;334 const Int_t type = fHists->HasLo(idx) ? fHistoType : M_RADIO_HI; 333 335 334 336 switch (type) … … 340 342 fCanvas->cd(); 341 343 if (type==M_RADIO_HI) 342 fHists->DrawHi( selected-1);344 fHists->DrawHi(idx); 343 345 else 344 fHists->DrawLo( selected-1);346 fHists->DrawLo(idx); 345 347 break; 346 348 … … 349 351 350 352 fCanvas->cd(1); 351 fHists->DrawHi( selected-1);353 fHists->DrawHi(idx); 352 354 353 355 fCanvas->cd(2); 354 fHists->DrawLo( selected-1);356 fHists->DrawLo(idx); 355 357 break; 356 358 } -
trunk/MagicSoft/Mars/mfilter/MFEnergySlope.cc
r2008 r2010 178 178 } 179 179 180 // --------------------------------------------------------------------------181 //182 // Postprocess all filters.183 //184 Bool_t MFEnergySlope::PostProcess()185 {186 return kTRUE;187 } -
trunk/MagicSoft/Mars/mgui/MCamDisplay.cc
r1966 r2010 486 486 max = event.GetNumPhotonsMax(fGeomCam); 487 487 488 if (max < 1.)489 max = 1.;488 if (max==min) 489 max = min +1; 490 490 491 491 UpdateLegend(min, max); … … 531 531 max = event.GetMeanMax(fGeomCam); 532 532 533 if (max < 20.)534 max = 20.;533 if (max==min) 534 max = min +1; 535 535 536 536 UpdateLegend(min, max); … … 569 569 max = event.GetErrorPhotMax(fGeomCam); 570 570 571 if (max < 20.)572 max = 20.;571 if (max==min) 572 max = min +1; 573 573 574 574 UpdateLegend(min, max); -
trunk/MagicSoft/Mars/mhist/MH.cc
r1992 r2010 725 725 TString str(opt); 726 726 727 if (!str.Contains("nonew", TString::kIgnoreCase) || !gPad)727 if (!str.Contains("nonew", TString::kIgnoreCase)) 728 728 return NULL; 729 729 -
trunk/MagicSoft/Mars/mhistmc/MHMcEnergyMigration.h
r1992 r2010 7 7 8 8 #ifndef ROOT_TH3 9 #include "TH3.h" 10 #endif 11 12 #ifndef ROOT_TH2 13 #include "TH2.h" 9 #include <TH3.h> 14 10 #endif 15 11
Note:
See TracChangeset
for help on using the changeset viewer.