- Timestamp:
- 10/26/09 15:24:53 (15 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9511 r9520 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2009/10/26 Thomas Bretz 22 23 * Makefile: 24 - moved definition of OSTYPE to Makefile.conf.general 25 - removed mreflector 26 27 * Makefile.conf.general: 28 - added definition of OSTYPE 29 30 * callisto.cc: 31 - added option for test mode 32 33 * ceres.rc: 34 - fixed a typo 35 - added a line for the cone transmission 36 37 * condor/program.submit: 38 - Out shell be Output 39 - Log is now set automatically by condor 40 41 * mastro/MAstroCatalog.cc: 42 - added a trailing / to the default path 43 44 * mbase/MAGIC.cc: 45 - added a warning when using root versions which contain a projection 46 bug which doesn't allow to reuse plotted histograms as expected 47 48 * mbase/MEnv.h: 49 - added a default to GetValue 50 51 * mbase/MLut.cc: 52 - added a validity check for the line data 53 54 * mbase/MParSpline.[h,cc]: 55 - added RecursiveRemove 56 - added destructor 57 58 * mbase/MSpline3.[h,cc]: 59 - renamed overloaded Integral to avoid confusions in the interpreter 60 61 * mcalib/MCalibrationChargeCalc.cc: 62 - tiny cosmetics (a/=b instead of a=a/b) 63 64 * mcorsika/MCorsikaRead.h, mdata/MDataMember.h, 65 mhbase/MFillH.h, msim/MSimMMCS.h: 66 - excluded pointers from I/O, this causes some (the last) event 67 to be stored, which could be quite large 68 69 * mfilter/MFSoftwareTrigger.cc: 70 - added some informal output to the log-stream 71 72 * mhbase/MH3.cc: 73 - added a sanity if when deleting fHist 74 75 * mhbase/MHn.[h,cc]: 76 - added RecursiveRemove 77 78 * mhist/MHCamEvent.cc: 79 - check for fSum in RecursiveRemove 80 81 * mjobs/MJCalibration.cc: 82 - write commandline to output 83 84 * mpointing/MPointingDevCalc.cc: 85 - added new pointing informations 86 87 * msimcamera/MSimAPD.cc: 88 - added the 3600 cell APD type 89 90 * msimcamera/MSimBundlePhotons.cc: 91 - improved a comment 92 93 * msimcamera/MSimExcessNoise.[h,cc]: 94 - changed size of excess noise to be variable 95 96 * msimcamera/MSimTrigger.cc: 97 - print some information if electronics is "switched off" 98 99 * msimreflector/MReflector.cc: 100 - improved a comment 101 102 * mbase/MStatusArray.[h,cc]: 103 - tried to improved stability by a completely self made deletion 104 scheme for the canvases 105 106 * mgeom/MGeomPix.h: 107 - replaced tan(60)/2 by sin(60) 108 109 * mjobs/MJCalibrateSignal.[h,cc]: 110 - added test mode to allow calibration of calibration files 111 112 * Makefile, */Makefile: 113 - brought includes in the correct order 114 115 * msimcamera/MSimRandomPhotons.cc: 116 - added the Cone transmission 117 - added a lot of comments 118 119 20 120 21 121 2009/09/11 Daniela Dorner -
trunk/MagicSoft/Mars/Makefile
r9518 r9520 59 59 melectronics \ 60 60 msim \ 61 mreflector \62 61 msimreflector \ 63 62 msimcamera \ -
trunk/MagicSoft/Mars/NEWS
r9511 r9520 22 22 * the environment variable OSTYPE should now be obsolete. Instead 23 23 the output of "uname -s" converted to lower cases is used 24 25 * The Makefiles should now detect the OSTYPE automatically using 26 uname. This should make the setting of OSTYPE obsolete 24 27 25 28 ;showplot: … … 654 657 * added a new tab "CalPos" showing the arrival time of extracted 655 658 interleaved calibration events 659 660 * Using the new --test switch you can now calibrate the calibration 661 file 656 662 657 663 ;star -
trunk/MagicSoft/Mars/mhbase/MFillH.h
r8961 r9520 23 23 24 24 private: 25 MParContainer *fParContainer; // Pointer to the data container storing25 MParContainer *fParContainer; //! Pointer to the data container storing 26 26 TString fParContainerName; // Name to a data container 27 27 … … 31 31 TString fTitleTab; 32 32 33 MParameterD *fWeight; // Pointer to the container storing a weight33 MParameterD *fWeight; //! Pointer to the container storing a weight 34 34 TString fWeightName; // Name of a container storing a weight 35 35 -
trunk/MagicSoft/Mars/msimreflector/Makefile
r9237 r9520 6 6 # 7 7 ################################################################## 8 include ../Makefile.conf.general 8 9 include ../Makefile.conf.$(OSTYPE) 9 include ../Makefile.conf.general10 10 11 11 #------------------------------------------------------------------------------ -
trunk/MagicSoft/Mars/mtools/Makefile
r8087 r9520 6 6 # 7 7 ################################################################## 8 include ../Makefile.conf.general 8 9 include ../Makefile.conf.$(OSTYPE) 9 include ../Makefile.conf.general10 10 11 11 #------------------------------------------------------------------------------ … … 29 29 MSimulatedAnnealing.cc \ 30 30 MFFT.cc \ 31 31 MCubicCoeff.cc \ 32 32 MCubicSpline.cc \ 33 33 MagicReversi.cc \ … … 38 38 MagicCivilization.cc \ 39 39 MineSweeper.cc \ 40 40 MRolke.cc 41 41 42 42 ############################################################
Note:
See TracChangeset
for help on using the changeset viewer.