Changeset 7491
- Timestamp:
- 02/10/06 10:39:49 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7490 r7491 38 38 * mimage/MHHillas.cc: 39 39 - set minimum of fDelte to 0 instead of fDistC 40 41 * msignal/MExtractTimeAndChargeSpline.h: 42 - replaced the casts in SetRiseTimeHiGain and StFallTimeHiGain by 43 TMath::NInt 40 44 41 45 -
trunk/MagicSoft/Mars/Makefile
r7413 r7491 73 73 #LIBRARIES = $(SUBDIRS:%=lib/lib%.a) 74 74 LIBRARIES = $(SUBDIRS:=.a) 75 CONDOR = $(SUBDIRS:=.condor) 75 76 MRPROPERS = $(SUBDIRS:=.mrproper) 76 77 CLEANERS = $(SUBDIRS:=.clean) … … 124 125 endif 125 126 127 condor: $(CONDOR) 128 126 129 dox: $(SOLIB) 127 130 @echo -
trunk/MagicSoft/Mars/Makefile.rules
r6252 r7491 4 4 @echo " Doing Mr.Proper in $(@:.mrproper=)" 5 5 (cd $(@:.mrproper=); ($(MAKE) -f Makefile mrproper > /dev/null); cd ..;) 6 7 $(CONDOR): 8 @echo " Starting make in $(@:.condor=) via condor" 9 (cd $(@:.condor=); (condor_run $(MAKE) &); cd ..;) 6 10 7 11 $(CLEANERS): -
trunk/MagicSoft/Mars/NEWS
r7441 r7491 36 36 correctly assigned in the raw data assignement table. A fix to correct 37 37 the assignment tabel have been implemented. 38 39 - general: MAstroCatalog now allows rotating of the sky-grid and stars 40 by 90, 180 and 270 deg. 38 41 39 42 - StatusDisplay: Fixed the algorithm to calculate the size ratio -
trunk/MagicSoft/Mars/mastro/MAstroCatalog.cc
r7264 r7491 815 815 TestBit(kMirrorY) ? -w(1) : w(1)); 816 816 817 v=v.Rotate(fAngle*TMath::DegToRad()); 818 817 819 if (w(2)<0) 818 820 return kERROR; … … 1147 1149 const Bool_t white = o.Contains("white", TString::kIgnoreCase); 1148 1150 const Bool_t yellow = o.Contains("yellow", TString::kIgnoreCase) && !white; 1151 const Bool_t rot180 = o.Contains("180", TString::kIgnoreCase); 1152 const Bool_t rot270 = o.Contains("270", TString::kIgnoreCase); 1153 const Bool_t rot90 = o.Contains("90", TString::kIgnoreCase); 1149 1154 1150 1155 if (white) 1151 1156 SetMarkerColor(kWhite); 1157 1158 fAngle = 0; 1159 if (rot90) 1160 fAngle=90; 1161 if (rot180) 1162 fAngle=180; 1163 if (rot270) 1164 fAngle=270; 1152 1165 1153 1166 // X is vice versa, because ra is defined anti-clockwise -
trunk/MagicSoft/Mars/mastro/MAstroCatalog.h
r7264 r7491 37 37 38 38 TGToolTip *fToolTip; //! The tooltip currently displayed 39 Double_t fAngle; //! Rotation angle of map 39 40 40 41 MAttLine fAttLineSky; // Line Style and color for sky coordinates … … 169 170 void SetMarkerAttributes(); //*MENU* 170 171 172 TAttLine &GetAttLineSky() { return fAttLineSky; } 173 TAttLine &GetAttLineLocal() { return fAttLineLocal; } 174 171 175 virtual void EventInfo(Int_t event, Int_t px, Int_t py, TObject *selected=0); 172 176 -
trunk/MagicSoft/Mars/mimage/MHHillas.cc
r7122 r7491 91 91 fDelta->SetYTitle("Counts"); 92 92 93 fD istC->SetMinimum(0);93 fDelta->SetMinimum(0); 94 94 95 95 MBinning bins; -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h
r7056 r7491 78 78 fRiseTimeLoGain = f*fLoGainStretch; 79 79 fSqrtHiGainSamples = TMath::Sqrt(fNumHiGainSamples); 80 fWindowSizeHiGain = (Int_t)(fRiseTimeHiGain + fFallTimeHiGain);80 fWindowSizeHiGain = TMath::Nint(fRiseTimeHiGain + fFallTimeHiGain); 81 81 } 82 82 void SetFallTimeHiGain( const Float_t f=fgFallTimeHiGain ) … … 87 87 fNumLoGainSamples = fLoGainLast ? fRiseTimeLoGain + fFallTimeLoGain : 0.; 88 88 fSqrtLoGainSamples = TMath::Sqrt(fNumLoGainSamples); 89 fWindowSizeLoGain = (Int_t)(fRiseTimeLoGain + fFallTimeLoGain);89 fWindowSizeLoGain = TMath::Nint(fRiseTimeLoGain + fFallTimeLoGain); 90 90 } 91 91
Note:
See TracChangeset
for help on using the changeset viewer.