Changeset 7022 for trunk/MagicSoft
- Timestamp:
- 05/12/05 19:20:44 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7020 r7022 47 47 48 48 49 2005/05/12 Thomas Bretz 50 51 * mcalib/MCalibrationChargeCam.cc: 52 - fixed a bug in FinalizeArrivalTime which caused Form() to hang 53 54 * mmuon/MHMounPar.[h,cc] 55 - added a line showing a reference shape 56 57 * star.rc: 58 - added setup strings for software trigger 59 60 61 49 62 2005/05/12 Markus Meyer 63 64 * mmuon/MHMounPar.[h,cc] 65 - added function Paint. This function integrates the TProfile 66 ArcWidth/Radius Vs. Radius between certain values and shows 67 the result in the Status Display 50 68 51 69 * mmjobs/MJStar.cc … … 54 72 * star.rc 55 73 - changed the default values for the final muon cuts 56 57 58 59 2005/05/12 Thomas Bretz60 61 * mcalib/MCalibrationChargeCam.cc:62 - fixed a bug in FinalizeArrivalTime which caused Form() to hang63 64 65 66 2005/05/12 Markus Meyer67 68 * mmuon/MHMounPar.[h,cc]69 - added function Paint. This function integrates the TProfile70 ArcWidth/Radius Vs. Radius between certain values and shows71 the result in the Status Display72 74 73 75 -
trunk/MagicSoft/Mars/NEWS
r7013 r7022 1 1 -*-*- END -*-*- 2 2 *** Version <cvs> 3 4 - added muon support to star. A new tab "MHMuonPar" is displayed. 5 The lower right plot is an estimate of the point spread 6 function. A reference value is displayed. To get the real PSF 7 you must compare with MC. The setup for the muon analysis 8 is done in star.rc. More informations can be found in 9 MHSingleMuon and MHCalibParCalc 3 10 4 11 - added a full featured spectrum program (sponde) which reads … … 37 44 - support for MRunIter has been removed from the job classes (use 38 45 the setter functions of MSeqeunce instead) 39 40 - added muon support to star41 46 42 47 - fixed a bug in MExtractTimeAndchargeSpline which could cause -
trunk/MagicSoft/Mars/mmuon/MHMuonPar.cc
r7015 r7022 45 45 46 46 #include <TH1.h> 47 #include <TF1.h> 47 48 #include <TPad.h> 48 49 #include <TLatex.h> … … 207 208 fHistBroad.Draw(); 208 209 210 TF1 ref("RefShape", "0.112*x*x - 0.413*x + 0.404", 0.7, 1.2); 211 ref.SetLineColor(kBlue); 212 ref.SetLineWidth(1); 213 ref.SetLineStyle(kDashed); 214 ref.DrawCopy("same"); 215 209 216 AppendPad("pad4"); 210 217 } -
trunk/MagicSoft/Mars/star.rc
r7018 r7022 45 45 46 46 # ------------------------------------------------------------------------- 47 # Use this if you want to change the parameters of the software trigger 48 # ------------------------------------------------------------------------- 49 50 #FilterSwTrigger.Threshold: 5 51 #FilterSwTrigger.NumNeighbors: 4 52 #FilterSwTrigger.TimeWindow: 0.5 53 54 # ------------------------------------------------------------------------- 47 55 # Setup or switch off the muon analysis here 48 56 # ------------------------------------------------------------------------- … … 73 81 # ------------------------------------------------------------------------- 74 82 # ------------------------------------------------------------------------- 75 #M JStar.MHillasCalc.IdxIsland: 083 #MHillasCalc.IdxIsland: 0 76 84
Note:
See TracChangeset
for help on using the changeset viewer.