Changeset 9420
- Timestamp:
- 04/01/09 15:29:50 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9419 r9420 18 18 19 19 -*-*- END OF LINE -*-*- 20 2009/04/0 2Thomas Bretz20 2009/04/01 Thomas Bretz 21 21 22 22 * Makefile.conf.linux: 23 23 - removed accidental '-g' 24 25 26 27 2009/04/01 Thomas Bretz28 24 29 25 * Makefile.conf.linux: 30 26 - removed -Wconversion (produces too much output on newer 31 27 compilers) 28 29 * ceres.rc, mjobs/MJSimulation.cc: 30 - added a cut "Cut" after image parameter calculation 31 - updated noise numbers 32 32 33 33 -
trunk/MagicSoft/Mars/NEWS
r9414 r9420 13 13 canvases) found in the file are drawn. Note that this may result 14 14 in empty tabs. 15 16 ;ceres: 17 18 * The night sky noise is now scaled with the sensitive area and 19 is given in units per square centimeter 20 21 * Added the possibility to add a cut after the image parameter 22 calculation (''Cut'') 15 23 16 24 ;callisto: … … 36 44 ;REMARK 37 45 38 * File produced with this release containing a gamera geometry (which39 are basically all files we produce perdefault) will not be readable46 * File produced with this release containing a camera geometry (which 47 are basically all files were produced as default) will not be readable 40 48 by older releases. 41 49 -
trunk/MagicSoft/Mars/ceres.rc
r9378 r9420 130 130 #MSimAPD.NameGeomCam: 131 131 132 132 133 # ------------------------------------------------------------------------- 133 134 # Setup the absorption, conversion efficiency and angular acceptance … … 144 145 #MSimReflector.DetectorMargin: 0 145 146 147 148 # ------------------------------------------------------------------------- 149 # Setup the dark counts (FrequencyFixed) and the NSB noise per cm^2 150 # ------------------------------------------------------------------------- 151 # Dark Counts per APD: ~4MHz 152 MSimRandomPhotons.FrequencyFixed: 0.004 153 # NSB photon rate per cm^2 ~40MHz (folded with the cones' angular 154 # acceptance and the wavelength acceptance of the camera (window, apd, etc) 155 MSimRandomPhotons.FrequencyNSB: 0.040 156 157 # FIXME: With a class describing the cones we could give NSB as 158 # per sr and cm^2 146 159 147 160 # ------------------------------------------------------------------------- … … 221 234 #MImgCleanStd.CleanLevel1: 6.0 222 235 #MImgCleanStd.CleanLevel2: 6.0 236 237 # ------------------------------------------------------------------------- 238 # This is a cut executed after the calculation of the image parameters 239 # ------------------------------------------------------------------------- 240 #Cut.Inverted: Yes 241 #Cut.Condition: MNewImagePar.fNumUsedPixels>4 && MHillas.fSize>30 -
trunk/MagicSoft/Mars/mjobs/MJSimulation.cc
r9385 r9420 499 499 // DWARF: 14MHz-25Mhz / APD 500 500 501 502 501 // FIXME: Simulate photons before cones and QE! 503 502 504 503 MSimRandomPhotons simnsb; 505 // simnsb.SetFreq(0.005, 0.004); // 5MHz/cm^2, 4MHz 506 simnsb.SetFreq(0, 0.04); // 40MHz fixed for each APD 504 simnsb.SetFreq(0.0015, 0.04); // 1.5MHz dark count rate, 40MHZ/cm^2 NSB 507 505 simnsb.SetNameGeomCam("GeomCones"); 508 506 … … 511 509 512 510 MSimAPD simapd; 513 simapd.SetFreq(0.04); // Must be identical to MSimRanodmPhotons!!511 //simapd.SetFreq(0.04); // Must be identical to MSimRandomPhotons!! 514 512 simapd.SetNameGeomCam("GeomCones"); 515 513 … … 550 548 evt0a.SetErrorSpread(kFALSE); 551 549 evt0c.SetCollectMax(); 550 551 MContinue cut("", "Cut"); 552 552 553 553 MFillH fillx0a(&evt0a, "MSignalCam", "FillAvgSignal"); … … 664 664 tasks.AddToList(&clean); 665 665 tasks.AddToList(&hcalc); 666 tasks.AddToList(&cut); 666 667 tasks.AddToList(&fillx0d); 667 668 tasks.AddToList(&fillx1);
Note:
See TracChangeset
for help on using the changeset viewer.