Changeset 9375
- Timestamp:
- 03/02/09 15:17:04 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9374 r9375 40 40 mcorsika/MCorsikaEvtHeader.cc, mfilter/MFSoftwareTrigger.cc, 41 41 mgeom/MGeomCam.cc, mhcalib/MHCalibrationCam.cc, 42 mhcalib/MHCalibrationChargeCam.cc, mhcalib/MHCalibrationPulseTimeCam.cc, 42 mhcalib/MHCalibrationChargeCam.cc, msignal/MSignalCam.cc, 43 mhcalib/MHCalibrationPulseTimeCam.cc, 43 44 mhcalib/MHCalibrationRelTimeCam.cc, mhft/MHexagonalFTCalc.cc, 44 45 mhist/MHCamera.cc, mimage/MHillas.cc, mimage/MNewImagePar.cc, 45 mjobs/MJCut.cc, mjobs/MJSimulation.cc, mpedestal/M ExtractPedestal.cc,46 mpedestal/M PedPhotCam.cc, mpedestal/MPedestalCam.cc,47 mp ointing/MPointingPos.h, msignal/MSignalCam.cc,48 msimcamera/MSim GeomCam.cc:46 mjobs/MJCut.cc, mjobs/MJSimulation.cc, mpedestal/MPedPhotCam.cc, 47 mpedestal/MExtractPedestal.cc, mpointing/MPointingPos.h, 48 mpedestal/MPedestalCam.cc, msimcamera/MSimGeomCam.cc, 49 msimcamera/MSimRandomPhotons.cc: 49 50 - replaced MGeomPix by MGeom 50 51 … … 52 53 - added BinningDist 53 54 - converted Muon cuts from mm to deg 55 56 * mhflux/MHCollectionArea.cc: 57 - fixed a problem that a plot disappeared in old files 58 59 * mmuon/MMuonSearchPar.cc: 60 - switched off the check in Paint (this works only for MAGIC :( ) 54 61 55 62 -
trunk/MagicSoft/Mars/mhflux/MHCollectionArea.cc
r9362 r9375 286 286 void MHCollectionArea::Paint(Option_t *option) 287 287 { 288 if (TString(option)=="paint4" && fMcAreaRadius>0) 289 { 288 // This is a workaround to support also older files 289 if (TString(option)=="paint3") 290 return; 291 292 if (TString(option)=="paint4") 293 { 294 if (fMcAreaRadius<=0) 295 return; 296 290 297 const TString txt = MString::Format("r_{max}=%.0fm --> A_{max}=%.0fm^{2}", 291 298 fMcAreaRadius, GetCollectionAreaAbs()); -
trunk/MagicSoft/Mars/msimcamera/MSimRandomPhotons.cc
r9356 r9375 57 57 58 58 #include "MGeomCam.h" 59 #include "MGeom Pix.h"59 #include "MGeom.h" 60 60 61 61 #include "MPhotonEvent.h" … … 212 212 // Read the parameters from the resource file. 213 213 // 214 // FrequencyFixed: 40215 // FrequencyNSB: 40214 // FrequencyFixed: 0.040 215 // FrequencyNSB: 0.040 216 216 // 217 217 // The frequency is given in units fitting the units of the time.
Note:
See TracChangeset
for help on using the changeset viewer.