Changeset 8691 for trunk/MagicSoft
- Timestamp:
- 08/22/07 12:57:28 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8690 r8691 18 18 19 19 -*-*- END OF LINE -*-*- 20 2007/08/22 Markus Meyer 21 22 * datacenter/macros/fillstar.C 23 - changed reference values for muon analysis according to 24 the large muon sample with old image cleaning (Mars-1.2) and 25 smaller integration region (0.75 to 1.2) 26 27 20 28 21 29 2007/08/22 Stefan Ruegamer -
trunk/MagicSoft/Mars/datacenter/macros/fillstar.C
r8686 r8691 162 162 163 163 Float_t mw = hmuon->GetMeanWidth(); 164 Float_t psf = 7 1.685*mw - 28.323;164 Float_t psf = 78.536*mw - 35.624; 165 165 psf = TMath::Nint(psf*10)/10.; 166 166 if (psf<0) … … 169 169 Int_t num = (int)hmuon->GetEntries(); 170 170 171 Float_t ratiodatamc = (hmuon->GetMeanSize()/7 464)*100;171 Float_t ratiodatamc = (hmuon->GetMeanSize()/7157)*100; 172 172 TString ratio = Form("%5.1f", ratiodatamc); 173 173 -
trunk/MagicSoft/Mars/mmuon/MHMuonPar.cc
r8686 r8691 65 65 using namespace std; 66 66 67 const Float_t MHMuonPar::fgIntegralLoLim = 0. 8;68 const Float_t MHMuonPar::fgIntegralUpLim = 1. 2;67 const Float_t MHMuonPar::fgIntegralLoLim = 0.751; 68 const Float_t MHMuonPar::fgIntegralUpLim = 1.199; 69 69 70 70 // -------------------------------------------------------------------------- … … 97 97 98 98 fHistBroad.SetName("RingBroadening"); 99 fHistBroad.SetTitle("Profile ArcWidth /Radiusvs Radius");99 fHistBroad.SetTitle("Profile ArcWidth vs Radius"); 100 100 fHistBroad.SetXTitle("R [\\circ]"); 101 101 fHistBroad.SetYTitle("W/R [1]"); … … 177 177 178 178 fHistBroad.Fill(fMm2Deg*fMuonSearchPar->GetRadius(), 179 fMuonCalibPar->GetArcWidth() /(fMm2Deg*fMuonSearchPar->GetRadius()), w);179 fMuonCalibPar->GetArcWidth(), w); 180 180 181 181 fHistSize.Fill(fMm2Deg*fMuonSearchPar->GetRadius(),
Note:
See TracChangeset
for help on using the changeset viewer.