Changeset 1795
- Timestamp:
- 02/25/03 21:49:22 (22 years ago)
- Location:
- trunk/MagicSoft
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r1793 r1795 4 4 * Makefile 5 5 - changed order of binaries 6 - added make links 7 - added make magic 8 - added make model 6 9 7 10 * base/timer.cc: -
trunk/MagicSoft/Cosy/Makefile
r1793 r1795 117 117 @echo "cd .." 118 118 119 links: 120 @ln -sf ../Mars/mbase/MAGIC.h base/MAGIC.h 121 @ln -sf ../Mars/mbase/MLog.h base/MLog.h 122 @ln -sf ../Mars/mbase/MLog.cc base/MLog.cc 123 @ln -sf ../Mars/mbase/MLogManip.h base/MLogManip.h 124 @ln -sf ../Mars/mbase/MLogManip.cc base/MLogManip.cc 125 @ln -sf ../Mars/mbase/MGList.h base/MGList.h 126 @ln -sf ../Mars/mbase/MGList.cc base/MGList.cc 127 @ln -sf ../Mars/mbase/MParContainer.h base/MParContainer.h 128 @ln -sf ../Mars/mbase/MParContainer.cc base/MParContainer.cc 129 @ln -sf ../Mars/mtemp/MObservatory.h base/MObservatory.h 130 @ln -sf ../Mars/mtemp/MObservatory.cc base/MObservatory.cc 131 119 132 tar: mrproper 120 133 @echo "Making tar-file" -
trunk/MagicSoft/Mars/Changelog
r1792 r1795 1 2 -*-*- END -*-*- 1 -*-*- END OF LINE -*-*- 2 2003/02/25: Thomas Bretz 3 4 * mbase/MParContainer.cc: 5 - small simplification for Cosy 6 7 * mbase/MLog.cc: 8 - allow a maximum of 1000 lines in the gui 9 10 11 3 12 2003/02/25: Abelardo Moralejo 4 13 … … 9 18 - Added output file with rate histograms 10 19 20 21 11 22 2003/02/24: Abelardo Moralejo 12 23 13 24 * mmontecarlo/MMcTriggerRateCalc.[h,cc] 14 - Fixed mistake when analysing camera files containing all events15 (including non-triggers): fShowers was always zero.25 - Fixed mistake when analysing camera files containing all 26 events (including non-triggers): fShowers was always zero. 16 27 - Added reading of MMcTrigHeaders in ReInit 17 - Added procedure Draw for graphics output: rate versus discriminator 18 threshold (useful for camera files with several trigger conditions). 28 - Added procedure Draw for graphics output: rate versus 29 discriminator threshold (useful for camera files with several 30 trigger conditions). 19 31 20 32 * macros/trigrate.C 21 - Added some explanations. Style improvements in function GetNSBEvents.22 Added call to MMcTriggerRateCalc::Draw33 - Added some explanations. Style improvements in function 34 GetNSBEvents. Added call to MMcTriggerRateCalc::Draw 23 35 24 36 * mhist/MHMcRate.[h,cc] … … 26 38 - Added members fMultiplicity and fMeanThreshold, with their 27 39 corresponding Set and Get functions 28 - Added info on discriminator threshold and L1 trigger multiplicity29 40 - Added info on discriminator threshold and L1 trigger 41 multiplicity on the printout. 30 42 31 43 * mmc/MMcTrigHeader.hxx 32 44 - Added GetMultiplicity() and GetMeanThreshold() 33 45 46 47 34 48 2003/02/22: Wolfgang Wittek 35 49 … … 41 55 42 56 * mhist/MHSigmaTheta.[h,cc] 43 - type inconsisitency removed 57 - type inconsistency removed 58 44 59 45 60 … … 48 63 * mmontecarlo/MMcTriggerRateCalc.[h,cc] 49 64 - adapted to new camera files, added warnings. 50 - added ReInit procedure to read relevant info from from the run headers 65 - added ReInit procedure to read relevant info from from the 66 run headers 51 67 52 68 * mhist/MHMcRate.[h,cc] … … 59 75 - adapted to changes above, changed MReadTree to MReadMarsFile to 60 76 be able to read the run headers. 77 78 61 79 62 80 2003/02/21: Antonio Stamerra … … 85 103 86 104 105 87 106 2003/02/20: Wolfgang Wittek 88 107 … … 109 128 * mhist/MH.cc 110 129 - Removed call to TGaxis::Optimize for compilation under root 111 versions > 3.03, since in them this procedure is no longer existing. 112 I did this to allow compilation under root_3.04, since earlier 113 versions has a bug which prevents from plotting in the simple way 114 some variables in a tree (example: fConc and others in the output 115 of star.C). This is a temporal fix, I guess something will have to 130 versions > 3.03, since in them this procedure is no longer 131 existing. I did this to allow compilation under root_3.04, 132 since earlier versions has a bug which prevents from 133 plotting in the simple way some variables in a tree 134 (example: fConc and others in the output of star.C). This 135 is a temporal fix, I guess something will have to 116 136 substitute the call to Optimize... 117 137 … … 130 150 Calc(); CalcPseudoSize (not yet implemented) 131 151 - Redefined Print() function as a TObject. 132 - pixels_in_cell and pixels_in_lut redefined as static data members 152 - pixels_in_cell and pixels_in_lut redefined as static data 153 members 133 154 134 155 * manalysis/MMcTriggerLvl2Calc.[cc|h] … … 159 180 fHillas = (MHillas*)pList->FindCreateObj(fHilName); 160 181 by 161 fHillas = (MHillas*)pList->FindCreateObj("MHillas",fHilName); 182 fHillas = (MHillas*)pList->FindCreateObj("MHillas", 183 fHilName); 162 184 in order to allow MHillas containers with a name 163 185 different from "MHillas" … … 181 203 - add member function DefRefMatrix(); 182 204 it defines the reference sample for the g/h separation; 183 the selection of events for the reference sample can be made such184 that the distribution of a certain variable (for example Theta)185 agrees with a target distribution.205 the selection of events for the reference sample can be made 206 such that the distribution of a certain variable (for example 207 Theta) agrees with a target distribution. 186 208 187 209 * mfilter/MFEventSelector.[h,cc] 188 210 - add new argument for constructor: 189 211 the name of the read object 190 in order to allow also read objects which have a name different from 212 in order to allow also read objects which have a name 213 different from 191 214 "MRead" 192 215 … … 210 233 211 234 * Makefile.conf.osf1 212 - Added -lpthread to compilation flags (otherwise linking fails in alfa) 235 - Added -lpthread to compilation flags (otherwise linking fails 236 in alfa) 213 237 214 238 * manalysis/Makefile, AnalysisLinkDef.h … … 231 255 * manalysis/MSigmabar.[h,cc] 232 256 - new definition of Sigmabar (only relevant for MAGIC) 233 - add in member function 'Calc' a 3rd argument : 'const MCerPhotEvt &evt' 257 - add in member function 'Calc' a 3rd argument : 'const 258 MCerPhotEvt &evt' 234 259 - calculate sigmabar for 'MCerPhotEvt' pixels 235 - in member function 'Calc' return Float_t fSigmabar instead of Bool_t 260 - in member function 'Calc' return Float_t fSigmabar instead of 261 Bool_t 236 262 - copies of objects replaced by references 237 263 … … 242 268 243 269 * mfileio/MCT1ReadPreProc.cc 244 - add in member function PreProcess() the initialization of the total245 number of pixels :270 - add in member function PreProcess() the initialization of the 271 total number of pixels : 246 272 fPedest->InitSize(iMAXNUMPIX); 247 - remove statements that cannot be reached ('break' after 'return') 273 - remove statements that cannot be reached ('break' after 274 'return') 248 275 249 276 * manalysis/MPadSchweizer.[h,cc] … … 264 291 * manalysis/MTrigLvl2.[cc|h] 265 292 - added new function 266 MTrigLvl2::GetLutCompactPixel(int cell, int lut, int neighpix=2) 267 which calculates the number of compact pixel in one lut 268 - added new function GetLutPseudoSize(int neighpix=2) which calculates 269 the lut-pseudosize 293 MTrigLvl2::GetLutCompactPixel(int cell, int lut, int 294 neighpix=2) which calculates the number of compact pixel 295 in one lut 296 - added new function GetLutPseudoSize(int neighpix=2) which 297 calculates the lut-pseudosize 270 298 - added static data member pixel_in_lut 271 299 - merging of the PrintCell and PrintStatus functions in a single
Note:
See TracChangeset
for help on using the changeset viewer.