source: trunk/MagicSoft/Mars/Changelog@ 2461

Last change on this file since 2461 was 2461, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 137.7 KB
Line 
1 -*-*- END OF LINE -*-*-
2 2003/11/03: Thomas Bretz
3
4 * manalysis/MMcPedestalCopy.[h,cc], manalysis/MMcPedestalNSBAdd.[h,cc]:
5 - fixed such, that it now works correctly with non-MC files
6 - moved container requests from PreProcess to ReInit
7 - removed some obsolete data members - made them locally
8
9 * manalysis/MMcPedestalRead.[h,cc]:
10 - removed
11
12 * mbase/MEvtLoop.cc:
13 - replaced the gApplication->InheritsFrom(TRint::Class())
14 workaround for thread safty by the more correct check
15 whether we are running in the main Thread (TThread::Self())
16 - added double-cast to TProgressBar::SetPosition
17
18 * mbase/MTask.h:
19 - added the missing const-qualifier to GetNumExecutions
20
21 * mbase/MTaskList.cc:
22 - fixed a typo in the output
23
24 * mimage/MHillasCalc.[h,cc]:
25 - replaced TArrayC by TArrayL to support huge number of events
26 - added PrintSkipped
27 - added comments to the data members
28
29 * mars.cc:
30 - added code for a possible use of a TGApplication
31 (in comments)
32
33 * merpp.cc, readraw.cc:
34 - unified with the other executables (StartUpMessage, etc)
35 - removed TROOT-object
36 - readraw.cc: added more functionality
37
38 * mraw/MRawEvtData.cc:
39 - changed positions of 'fush' in Print() (this confused 'more'
40 because 'more' also counts the ANSI color codes to determin
41 the line-length)
42
43 * mhistmc/MHMcCollectionArea.cc:
44 - added UseCurrentStyle such that the axis labels are displayed
45
46 * mbase/MTime.[h,cc]:
47 - removed fTimeStamp
48 - increased version number
49 - changed Print() function
50 - removed obsolete functions and constructors
51 - fixed copy constructor
52
53 * mfileio/MCT1ReadPreProc.cc:
54 - replaced SetTime by SetCT1Time
55
56 * mhist/MHAlphaEnergyTime.cc, mhist/MHEnergyTime.cc,
57 mhist/MHThetabarTime.cc, mhist/MHTimeDiffTheta.cc,
58 mhist/MHTimeDiffTime.cc:
59 - adapted to changes in MTime
60
61 * mraw/MRawEvtHeader.cc:
62 - adapted to changes in MTime
63 - minor change to output in Print()
64
65
66
67 2003/10/31: Marcos Lopez
68
69 * mhist/MFillH.cc:
70 - Fixed a bug in function PreProcess(MParList *pList). Inside the
71 conditional sentence "if (!fWeight && !fWeightName.IsNull())",
72 fWeight never pointed to the object MWeight recoverd from the
73 parameter list.
74
75 * mhistmc/MHMcEnergyImpact.cc:
76 - In the Fill function, pass the weight to the histogram fHist.
77
78 * mmontecarlo/MMcWeightEnergySpecCalc.[h,cc]:
79 - Added new class for changing the energy spectrum of the showers
80 simulated with Corsika to a different one, be using weights
81
82 * mmontecarlo/Makefile, MonteCarloLinkDef.h
83 - Added the new class.
84
85 * macros/weights.C
86 - Added macro showing how to transform the spectrum of the MC showers.
87
88
89
90 2003/10/31: Thomas Bretz
91
92 * mars.cc:
93 - change TGApllication back to TApplication (TGApplication doesn't
94 load the TVirtualPad plugin by default) DISPLAY must be set
95 manually if it is not set.
96
97
98
99 2003/10/30: Antonio Stamerra
100
101 * manalysis/MMcTriggerLvl2.[h,cc]
102 - Added method CalcTriggerPattern to check which x-NN compact
103 pattern the event satisfies. The variable member fTriggerPattern
104 contains the number x (x=3,4,5,6,7).
105 - Inline function GetTriggerPattern added.
106
107 * manalysis/MMcTriggerLvl2Calc.cc
108 - Added call to the MMcTriggerLvl2::CalcTriggerPattern in Process().
109
110
111
112 2003/10/30: Thomas Bretz
113
114 * manalysis/MCerPhotEvt.[h,cc]:
115 - fixed a bug in the new Lut-stuff. Sometimes pixels where
116 considered existing, because there where no mark for
117 empty entries in the Lut.
118 - all loops ignored pixel with index 0 and used it as reference
119 pixel - this is wrong, because pixel 0 must not exist at all.
120 Now all loops are starting with pixel 0.
121
122 * mimage/MImgCleanStd.[h,cc]:
123 - renamed various local variables from 'id' to 'idx'
124 - in clean step 4 we assumed that a pixel with idx2 is existing
125 - this is a dangerous assumption. It is checked now.
126
127
128
129 2003/10/29: Thomas Bretz
130
131 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
132 - removed MMcPedestalRead
133
134 * manalysis/MMcPedestalCopy.[h,cc]:
135 - merged functionality of MMcPedestalRead into it
136 - do not remove itself from the tasklist, but check
137 the file type for each file again.
138 - added const-qualifiers in the class header
139
140 * manalysis/MMcPedestalNSBAdd.[h,cc]:
141 - don't do something if camera file version is < 0.7
142 - do not remove itself from the tasklist, but check
143 the file type for each file again.
144 - added const-qualifiers in the class header
145
146 * mgui/MCamEvent.cc:
147 - added a comment
148
149 * mimage/MHillasCalc.[h,cc]:
150 - replaced the fixed size array fErrors by a dynamic size array
151 (TArrayC) to make sure, that people get a warning on the
152 screen if the reprogram the error handling and write
153 into an unallowed index.
154
155
156
157 2003/10/28: Thomas Bretz
158
159 * macros/readCT1.C:
160 - fixed to work with the correct geometry
161
162 * macros/readMagic.C:
163 - fixed - was crashing
164
165 * macros/tar.C:
166 - exclude 'Tag' files from tar
167
168 * manalysis/MGeomApply.[h,cc]:
169 - replaced constructor by SetGeometry (constructor was
170 not unique)
171
172 * mbase/MEvtLoop.[h,cc]:
173 - set fProgress already when setting fDisplay (gives the
174 possibility to overwrite fProgress)
175 - removed 'entries' from ProcessGuiEvents (moved to fNumEvents)
176 - Set ProgressBar position in percent instead of event number
177 - Set progress bar range from 0 to 1
178
179 * mbase/MReadSocket.cc:
180 - fixed to treat timeout correctly
181 - replaces usleep() by gSystem->Sleep()
182
183 * mbase/MTime.h:
184 - added SetTime(ULong_t) (support for gSystem->Now())
185 - added SetTime(Double_t)
186 - added operator()
187 - fixed all comparison operators to use time instead of
188 time lo/hi - will be removed soon
189
190 * mimage/MHHillasSrc.cc:
191 - delete 3rd Pad
192
193 * mraw/MRawEvtData.cc:
194 - when drawing print gPad
195
196
197
198 2003/10/28: Wolfgang Wittek
199
200 * manalysis/MCT1PadONOFF.cc
201 - replace GetMeanRms() by GetPedestalRms()
202 - replace SetMeanRms() by SetPedestalRms()
203 - reactivate code which was commented out by tgb
204 (no compilation errors on Alpha OSF)
205
206 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
207 - put back MCT1PadONOFF
208
209 * macros/CT1Analysis.C, macros/ONOFFCT1Analysis.C
210 - current versions of macros for the analysis of CT1 data
211
212
213
214 2003/10/26: Oscar Blanch Bigas
215
216 * mmc/MMcFadcHeader.[cc,h]
217 - Added variable member that has the sigma of the electronic noise
218 that goes with the same value to both FADC gains (fDigitalNoise)
219 - Class version has been changed from 2 to 3.
220
221
222
223 2003/10/24: Abelardo Moralejo
224
225 * manalysis/MMcPedestalRead.[cc,h]
226 - Added. In coming camera version (0.7) the pedestal sigma per
227 FADC slice is calculated by the camera simulation at run time,
228 then written to the output file. This class reads in the pedestal
229 mean and sigma to be later used in the analysis (for tail cuts
230 mainly). This task will replace MMcPedestalCopy and
231 MMcPedestalNSBAdd for camera >= 0.7 files, for which the second
232 class would produce wrong results.
233
234
235
236 2003/10/23: Abelardo Moralejo
237
238 * mhistmc/MHMcEnergyMigration.cc
239 - Changed the Draw procedure: with new root versions (3.04, 3.05)
240 the result of the used drawing options was different from what
241 we had in 3.02, and the graphics output had become unreadable.
242 Replacing some Draw() calls by DrawCopy() has solved the problem.
243
244
245
246 2003/10/23: Thomas Bretz
247
248 * macros/star.C:
249 - replaced geometry by the task MGeomApply
250
251 * manalysis/MCerPhotCalc.cc:
252 - fixed typo
253
254
255
256 2003/10/22: Thomas Bretz
257
258 * mars.cc:
259 - replaced TApplication by TGApplication
260 - removed TROOT
261 - reset Batch mode in any case
262
263 * meventdisp/MGCamDisplay.cc:
264 - use new MHCamera::SetLevels to display cleaning levels
265
266 * mhist/MHCamera.[h,cc]:
267 - removed FillLevels - obsolete
268 - added SetLevels instead
269
270
271 2003/10/21: Wolfgang Wittek
272
273 * manalysis/MMatrixLoop.[h,cc]
274 - member function PreProcess() put from .h to .cc
275
276 * mhist/MHMatrix.[h,cc]
277 - member function SetNumRow() put from .h to .cc
278
279
280
281 2003/10/20: Thomas Bretz
282
283 * mraw/MRawEvtPixelIter.[h,cc]:
284 - changed name of member function from GetNumMax[Hi,Lo]GainSamples
285 to GetIdxMax[Hi,Lo]GainSamples
286
287 * manalysis/MMcPedestalCopy.cc:
288 - changed GetPedestalRms to GetElecNoise to make Mars compile with
289 the changes done in MMcFadcHeader
290
291 * mmc/MMcTrig.cxx:
292 - changed <iostream.h> to <iostream> according to C++
293
294 * mhistmc/MHMcTriggerLvl2.[h,cc]:
295 - MHMcTriggerLvl2::GetHistByName removed const-qualifier and
296 changed return type to TH1 according to definition in MH.
297
298 * macros/status.C:
299 - use MDirIter instead of a single file name
300 - adde MHTriggerLvl0
301 - Simplified macro by using PrintOutliers
302
303 * mhist/MHCamEvent.[h,cc]:
304 - renamed PrintOutlayers to PrintOutliers
305 - Divide pad only into two subpads
306
307 * mfilter/MF.cc:
308 - added comment about '=='
309
310 * mhist/MHMatrix.cc:
311 - removed some pieces of code which preserved the contents
312 of a matrix when resizing. This is done by root now.
313
314 * mfilter/MFRealTimePeriod.[h,cc]:
315 - added
316
317 * mfilter/Makefile, mfilter/FilterLinkDef.h:
318 - added MFRealTimePeriod
319
320 * mars.cc:
321 - moved Start-up-message to StartUpMessage()
322
323 * manalysis/MBlindPixelCalc.h, manalysis/MCT1FindSupercuts.cc,
324 manalysis/MCerPhotAnal.h:
325 - minor changes
326
327 * mhist/MHCamera.[h,cc]:
328 - added Profile-option (display contents/entries)
329 - added Freeze-option (ignore filling data into the histogram)
330 - added UseCurrentStyle to get the y-axis back
331 - overwrite DrawCopy
332
333 * manalysis/MCerPhotEvt.[h,cc]:
334 - added fLut to accelerate searching an index a lot, this should
335 be backward compatible to old class versions
336 - increased class version to 2
337 - removed all searches for indices - replaced by GetPixById
338 - GetPixById no uses the look-up-table, which is much much faster
339 and still searches the array if the fLut size is 0 which might
340 be because of a class version 1 object is read from a file -
341 according to Rene this should work.
342
343 * manalysis/MPedestalCam.[h,cc]:
344 - replaced a C-cast by a C++ static_cast
345
346 * mhist/MH.[h,cc]:
347 - renamed them from Draw/DrawCopy to DrawSame/DrawSameCopy
348
349 * mraw/MRawEvtData.[h,cc]:
350 - changed arrays to '//->'
351 - overwrote Copy() member function
352
353 * mhist/MFillH.[h,cc]:
354 - added GetCanvas()
355
356 * mhist/MHHadronness.cc, mimage/MHHillasExt.cc,
357 mimage/MHNewImagePar.cc:
358 - changed Draw to DrawSame
359
360 * mhist/MHCamEvent.cc:
361 - use new MHCamera profile mode
362
363 * mbase/MEvtLoop.cc, mmain/MStatusDisplay.cc:
364 - check whether application is TRint to make mone thread safe
365 This is necessary not to call ProcessEvents() twice at the
366 same time!
367
368
369
370 2003/10/17: Oscar Blanch
371
372 * mmc/MMcFadcHeader.[cxx,hxx]:
373 - Added variable members to store the pedestal sigma from thte
374 camera simulation porgram: fPedesSigmaHigh fPedesSigmaLow
375
376 * mmc/MMcRunHeader.cxx:
377 - fill fNumEvts with number of stored events
378
379 * mmc/MTriggerDefine.h:
380 - Trigger zone for CT1 cameras up to 126 pixels
381
382 * mgeom/MGeomMirror.cc:
383 - fixed bug in filling axis desviation
384
385
386
387 2003/10/15: Thomas Bretz
388
389 * Makefile.conf.general:
390 - added libThread to support mona
391
392 * manalysis/MCerPhotAnal2.cc:
393 - changed comments
394 - accelerated the code a bit by using pointer arithmetic
395
396 * mbase/BaseLinkDef.h, mbase/Makefile:
397 - added MReadSocket
398
399 * mbase/MReadSocket.[h,cc]:
400 - added MReadSocket
401
402 * mbase/MEvtLoop.cc:
403 - fixed some crashes in ProcessGuiEvents
404
405 * mbase/MFilter.cc:
406 - changed header
407
408 * mbase/MTime.h:
409 - added operator double()
410
411 * mimage/MHillas.cc:
412 - changed the comments about corrxy
413
414 * mmain/MStatusDisplay.[h,cc]:
415 - added many comments
416 - added kFileClose stuff
417 - added AddRawTab
418 - added thread handling in UpdateTab
419 - fixed deletion in case the pointer is on heap
420 - added date/time to ps-output
421
422 * mraw/MRawEvtHeader.cc:
423 - added some comments about the total number of bytes read
424
425 * mraw/MRawRunHeader.[h,cc]:
426 - added some comments about the total number of bytes read
427 - fixed treating files with 0xc0c1 as Magic-Number
428 - added GetNumTotalBytes
429
430 * mraw/Makefile, mraw/RawLinkDef.h:
431 - added MRawSocketRead
432
433 * mraw/MRawSocketRead.[h,cc]:
434 - added
435
436 * mona.cc:
437 - added
438
439
440
441 2003/10/05: Abelardo Moralejo
442
443 * macros/star.C:
444 - returned to revision 1.9 (I had committed by mistake a private
445 version of the macro, sorry!)
446
447
448
449 2003/10/04: Thomas Bretz
450
451 * macros/MagicHillas.C, macros/pedestalvstime.C, macros/pixfirerate.C,
452 macros/pixsatrate.C, macros/readCT1.C, macros/readMagic.C,
453 macros/starplot.C, macros/status.C, macros/sumevents.C,
454 macros/sumeventserr.C, macros/sumeventsrms.C, macros/sumpedestalrms.C,
455 macros/sumpedestals.C, mmain/MDataCheck.cc:
456 - added MGeomApply
457
458 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
459 - added MGeomApply
460
461 * manalysis/MBlindPixelCalc.cc:
462 - for buid-in pixel numbers added a check whether the geometry
463 is mathcing
464
465 * manalysis/MCerPhotCalc.cc, manalysis/MMcPedestalCopy.cc,
466 manalysis/MMcPedestalNSBAdd.cc, meventdisp/MGCamDisplay.[h,cc],
467 meventdisp/MGEvtDisplay.[h,cc], mhist/MHFadcCam.cc:
468 - fixed that it can deal with variable size arrays
469
470 * manalysis/MGeomApply.[h,cc]:
471 - added. This task will take care of different geometries
472
473 * manalysis/MPedestalCam.cc:
474 - initialize array with size 1
475 - do not call new operator
476
477 * mbase/MArgs.cc, mbase/MDirIter.cc:
478 - added comments
479
480 * mdatacheck/MGDisplayAdc.cc:
481 - fixed a small bug in setting slider position for different geometries
482
483 * mfileio/MWriteRootFile.cc:
484 - automatically append '.root' to file name
485
486 * mhist/MHCamera.cc:
487 - added Init function
488 - moved parts of the construtor to Init function
489 - added default constructor
490 - added possibility to change geometry after creation by SetGeometry
491 - added many sanity checks (fNcells<=1)
492
493
494
495 2003/10/02: Thomas Bretz
496
497 * mraw/MRawEvtData.cc:
498 - changed Draw so that also lo-gains are displayed.2
499
500
501
502 2003/10/01: Nicola Galante
503
504 * mhistmc/MHMcTriggerLvl2.[h,cc]:
505 - in method MHMcTriggerLvl2::Fill added filling of 2D histograms
506 of fLutPseudoSize vs. energy and of fSizeBiggerCell vs. energy
507 - modified method MHMcTriggerLvl2::GetHistByName which now
508 can return any histogram (data member) of the class
509 MHMcTriggerLvl2 (now it returns a (TObject *) not a (TH1F *))
510 - Updated option list of the methid MHMcTriggerLvl2::DrawClone
511
512 * macros/triglvl2.C:
513 - Updated according with changes in class MHMcTriggerLvl2
514
515
516
517 2003/09/30: Robert Wagner
518
519 * mfileio/MCT1ReadPreProc.cc
520 - undone change from 2003/09/26
521 - MJD is filled in fTime.Duration
522
523
524
525 2003/09/29: Nicola Galante & Antonio Stamerra
526
527 * mmc/MMcTrig.cxx:
528 - Fixed a bug in function IsPixelFired(): the binary shift, introduced
529 by T.B. to replace "pow" for power of two, was wrong.
530 The correct operator to be used is "<<" and not ">>"!
531
532 * manalysis/MMcTriggerLvl2.[h,cc]:
533 - Added method "CalcEnergy(MMcEvt *)" used to get correlation between
534 energy and size.
535 - Removed graphical functions "Drawcell" and "DrawLvl1"
536 - Fixed bug in the pixcell setting (pixel numbering in the cell starts
537 from 0 but gsPixelInLut starts from 1).
538 - Fixed bug in the "check" variable.
539
540 * manalysis/MMcTriggerCalc.[h,cc]:
541 - Added call to MMcTriggerLvl2::CalcEnergy() in Process()
542 - Removed 'const' from fMcEvt declaration
543
544 * mhistmc/MHMcTriggerLvl2.[h,cc]:
545 - Added method "Draw2DHist" (draw correlation between
546 energy and size)
547 - Fixed bug in "DrawClone" function (histogram normalization)
548
549 * macros/triglvl2.C:
550 - Fixed a bug in the task list order to apply correctly the filters
551 - Now it writes on disk a root file with some histograms
552
553
554
555 2003/09/26: Robert Wagner
556
557 * mfileio/MCT1ReadPreProc.cc
558 - provisionally pass complete event time to fTime container,
559 units are MJDs instead of seconds for the time being
560
561
562
563 2003/09/25: Abelardo Moralejo
564
565 * macros/MagicHillas.C, star.C
566 - Added cast: TArrayF w(15,(Float_t*)x) to get rid of warning.
567
568
569
570 2003/09/24: Abelardo Moralejo
571
572 * macros/MagicHillas.C, star.C
573 - Added const qualifier to TArrayF w(15,x); I got a crash due to
574 this missing qualifier when changing some code in MCerPhotCalc
575 (not yet submitted).
576
577 * macros/CT1Hillas.C
578 - removed code containing TArrayF w(15,x) (which was commented)
579 since it made no sense for CT1.
580
581
582
583 2003/09/24: Wolfgang Wittek
584
585 * mfilter/MFEventSelector2.[h,cc]
586 - execution statistics added
587
588 * mhist/MHFindSignificance.cc
589 - add fHist->UseCurrentStyle()
590 to get the y-axis + labels drawn
591
592 * mhist/MHMatrix.h
593 - replace Int_t fNumRow //!
594 by Int_t fNumRow //
595 because otherwise fNumRow is not defined when MHMatrix object is read in
596 after it had been written out
597
598 * mhist/MHCT1Supercuts.cc
599 - change title of object
600
601 * manalysis/MMinuitInterface.cc
602 - add arguments maxcalls and tolerance to SIMPLEX call
603
604 * manalysis/MCT1SupercutsCalc.[h,cc]
605 - add variables asymmetry, conc, leakage
606
607 * manalysis/MCT1Supercuts.[h,cc]
608 - add variables asymmetry, conc, leakage
609 - add TArrayD fStepsizes (initial step sizes for the parameters)
610
611 * manalysis/MCT1FindSupercuts.cc
612 - replace MGeomCamCT1Daniel by MGeomCamCT1
613 - arguments 'parSCinit', 'params' and 'steps' added in FindParams() ;
614 parSCinit is the name of the file containing the initial
615 values of the parameters
616 'params' and 'steps' are the initial values in case parSCinit == ""
617 - add member functions GetMatrixTrain() and GetMatrixTest()
618 - remove member function WriteMatrix()
619 because it didn't work; now the matrices are written out in
620 DefineTrainMatrix(), DefineTestMatri() and DefineTrainTestMatrix()
621
622 * macros/CT1EgyEst.C
623 - don't use Daniel's energy estimator
624
625 * mmontecarlo/MMcEnergyEst.cc
626 - extend printout of comments
627
628
629
630 2003/09/17: Abelardo Moralejo
631
632 * manalysis MCerPhotCalc.cc:
633 - in warning about saturating low gains in pixels: changed the
634 'if' by a 'switch' and slightly corrected text of warning (no
635 change in performance or results).
636
637
638
639 2003/09/16: Abelardo Moralejo
640
641 * manalysis MCerPhotCalc.[h,cc]:
642 - added the low gain treatment. It has first been implemented by
643 TB, and the version I submit is a slightly modified one. If any
644 high gain FADC slice is saturated, we switch to low gain. If low
645 gain is also saturated, the signal is nevertheless calculated
646 ("truncated" of course), and a warning is displayed reporting
647 the number of saturated pixels in the current event.
648 Fixed also the calculation of the mean pixel pedestal (added
649 variable fSumWeights), which previously would not work correctly
650 in the case that one sets weights different from 0 or 1 in the
651 array fWeight (which was anyway not done up to now, as far as I
652 know). It would be necessary to add to the parameters of the
653 analyzed events the number of saturated pixels in some way.
654 In the MC files produced with camera versions 0.6 or earlier, no
655 low gain is simulated, and saturation of high gain is not
656 correctly implemented, so this should not introduce any change
657 in the analysis of present or old MC files.
658
659
660
661 2003/09/12: Thomas Bretz
662
663 * mimage/MHillasSrc.cc:
664 - fixed the NaN-problem in the calculation of Alpha. More
665 information can be found in the comments there.
666
667 * mhist/MHFadcCam.[h,cc]:
668 - skip MC events which have no FADC information stored
669 - better output in case of changes in the number of slices
670 - added size argument to constructor to support ECO100, too.
671 - removed all fixed numbers and replaced them by the corresponding
672 function
673 - fixed pixel numbering to be consistent with the software pixel
674 numbering in the rest of Mars
675
676 * mhist/MHFadcPix.[h,cc]:
677 - fixed the missing y-axis (UseCurrentStyle())
678 - fixed pixel numbering by changing default arument of pixid in
679 constructor from 0 to -1
680
681 * mmain/MDataCheck.cc
682 - added 'Time Spectra of Cosmics' button
683 - added size argument to instatiation of MHFadcCam
684
685
686
687 2003/09/10: Thomas Bretz
688
689 * mdata/MDataChain.[h,cc]:
690 - added log2, acosh, asinh, atanh, ceil, isnan and finite
691 - changed math.h callings to TMath:: namespace to be more
692 consistent
693
694 * mhist/MHMatrix.[h,cc]:
695 - added RemoveInvalidRows member function to get rid of rows
696 containing invalid numbers (nan, inf)
697
698 * mraw/MRawEvtHeader.cc:
699 - fixed variable types calculating the time (ns, s, m and h)
700 to get rid of some compiler warnings, casting the values
701 for-, back- and forward only wasts computing time.
702
703
704
705 2003/09/08: Abelardo Moralejo
706
707 * mhist/MHOnSubtraction.cc:
708 - added some casts in the arguments of function calls, to get rid
709 of compilation warnings due to mismatch of variable type
710 (variables: lowerBin, upperBin). Corrected order of arguments in
711 TH1D constructor of fSignificanceHist (number of bins and bin
712 limits).
713
714 * mraw/MRawEvtHeader.cc:
715 - Added casts to arguments of fTime->SetTime(h, m, s, ns) to get
716 rid of compilation warnings.
717
718 * mhist/MHCamera.cc:
719 - Changed calls to abs and fabs by TMath::Abs. At least in RH7.2
720 with gcc2.96, abs() was not recognized.
721
722
723
724 2003/09/07: Abelardo Moralejo
725
726 * manalysis/MCerPhotCalc.cc:
727 - removed normalization of array fWeight introduced on 30/06. For
728 now, this array is intended only to select the FADC slices which
729 we want to integrate to get the signal. The use of this feature
730 of MCerPhotCalc is explained in the example macro MagicHillas.C
731 The array fWeight must contain 0's and 1's. If we normalize
732 these values, the signal units is no longer ADC counts (but
733 "average ADC counts per slice"). As David realized, this was the
734 reason for the discrepancies in the gamma/hadron separation
735 results we were observing lately. The meaning of Size was
736 different among the different people working on the subject, and
737 hence, when we compared samples with a given Size cut we were
738 actually comparing different energy ranges.
739
740 - Turned fSumQuadWeights to its original meaning, the quadratic
741 sum (square root of the sum of the squares) of the values in the
742 fWeight array. Why was this changed?? (sqrt removed) Only because
743 of the name of the variable??
744
745 - Changed the calculation of the mean pedestal to fit the meaning
746 of fSumQuadWeights.
747
748 - Moved the call to ScalePedestals() to the end of the ReInit
749 function. Formerly it was called before the setting of the
750 variable fEnableFix, and then the mean pedestal in each FADC
751 slice was wrong by 0.5 units... once more: please Thomas B,
752 be careful with these kind of changes.
753
754
755
756 2003/08/27: Thomas Bretz
757
758 * mhist/MH3.cc:
759 - fixed missing UseCurrentStyle for newer root versions
760
761
762
763 2003/08/26: Thomas Bretz
764
765 * mimage/MHHillas.cc, mimage/MHHillas.cc, mimage/MHHillasExt.cc,
766 mimage/MHNewImagePar.cc:
767 - fixed missing UseCurrentStyle for newer root versions
768
769
770
771 2003/08/26: Wolfgang Wittek
772
773 * manalysis/MCT1FindSupercuts.cc
774 - set size of fStep, fLimlo, fLimup, fFix
775 - in 'fcnsupercuts' : get total number of parameters by calling 'mnstat'
776
777 * manalysis/MCT1Supercuts.[h,cc]
778 - extend error printout
779
780 * manalysis/MMinuitInterface.cc
781 - do not delete the Minuit object because it will still be used
782
783 * mhist/MHFindSignificance.cc
784 - formulaBackg was wrong
785
786
787
788 2003/08/26: Robert Wagner
789
790 * mraw/MRawRunHeader.h
791 - Added Setter for MJD
792
793 * mfileio/MCT1ReadPreProc.cc
794 - Fill MJD from Preproc run header in fRawRunHeader
795
796
797
798 2003/08/22: Wolfgang Wittek
799
800 * mhistmc/MHMcCT1CollectionArea.cc
801 - change selection of theta bin in 'CalcEfficiency()'
802 (to be mored flexible in choosing the theta binnning)
803
804
805
806 2003/08/21: Thomas Bretz
807
808 * manalysis/MCT1FindSupercuts.[h,cc], manalysis/MCT1Supercuts.[h,cc],
809 manalysis/MCT1SupercutsCalc.[h,cc], manalysis/MMinuitInterface.[h,cc],
810 mhist/MHFindSignificance.[h,cc]:
811 - changed some variables and member functions with respect to an upcoming
812 Minimization Class
813 - simplified some calls
814 - replaced fixed size arrays by variable size arrays
815 - added some sanity checks
816 - simplified some variable usage
817
818 * mhist/MHCT1Supercuts.[h,cc]:
819 - removed obsolete SetupFill
820
821
822
823 2003/08/20: Thomas Bretz
824
825 * mhist/MHCamEvent.[h,cc]:
826 - added PrintOutlayers
827
828 * mhist/MHHadronness.cc:
829 - changed PrintOutput
830 - set some Grids in plots
831
832 * mhist/MHMatrix.cc:
833 - removed obsolete call to MEvtLoop::SetName
834 - Changed name to something more intuitive
835
836 * mranforest/MRanForest.cc, mranforest/MRanTree.h:
837 - removed ^M
838
839 * mranforest/MRanTree.cc:
840 - removed obsolete check for gRandom
841 - replaced mvar*numdata by a new variable mn
842
843
844
845 2003/08/19: Thomas Hengstebeck
846
847 * mranforest/MRanForest.cc:
848 Removed error in calculation of fDataRang in CreateDataSort().
849 In the loop where fDataRang is set, the local variable v must
850 be used with indices n1 and n2.
851
852
853
854
855 2003/08/19: Wolfgang Wittek
856
857 * manalysis/MCT1Supercuts.[h,cc]
858 - new class
859 - container for the supercut parameters
860
861 * manalysis/MCT1SupercutsCalc.[h,cc]
862 - get supercut parameters from container 'MCT1Supercuts'
863
864 * manalysis/MCT1FindSupercuts.[h,cc]
865 - new class
866 - optimizes the parameters for the supercuts
867
868 * manalysis/MMinuitInterface.[h,cc]
869 - new class
870 - interface for Minuit
871
872 * manalysis/Makefile
873 AnalysisLinkDef.h
874 - include MCT1FindSupercuts
875 MMinuitInterface
876
877 * mhist/MH3.cc
878 - reset fHist in SetupFill();
879 this is necessary if the same MH3 object is used in more than one
880 eventloop
881
882 * mhist/MHMatrix.cc
883 - give name to the event loop
884
885 * mhist/MHFindSignificance.[h,cc]
886 - new class
887 - calculates the significance of the gamma signal in the alpha plot
888
889 * mhist/MHCT1Supercuts.[h,cc]
890 - new class
891 - plots various quantities during the optimization of the supercuts
892
893 * mhist/Makefile
894 HistLinkDef.h
895 - MHFindSignificance included
896 - MHCT1Supercuts included
897
898
899
900 2003/08/01: Thomas Bretz
901
902 * mhist/MHCamera.[h,cc]:
903 - added Fill(x, y, w)
904 - renamed GetStats to GetStatisticBox
905
906 * mhist/MHStarMap.[h,cc]:
907 - include TH2 moved to source file
908
909 * mranforest/MRanForest.[h,cc], mranforest/MRanTree.[h,cc]:
910 - do not use all the data numbers and dimensions in thousands
911 of arguments if the data is available eg from the size of an array
912 - removed obsolete variables from header
913 - many small simplifications
914 - removed some obsolete variables from functions
915 - added many const qualifiers
916 - localized many more variables
917
918 * mranforest/MRanForestFill.[h,cc]:
919 - default fNumTrees set to -1 tree (all trees)
920
921 * manalysis/MBlindPixelCalc.[h,cc]:
922 - interpolate Pedestal, too
923 - Only count 'valid' pixels
924
925 * mfileio/MRead.[h,cc]:
926 - enhanced AddFiles
927
928 * mhist/MHCamEvent.[h,cc]:
929 - Added PrintOutlayers
930
931 * mhist/MHCamera.[h,cc]:
932 - added GetNumPixels
933 - added default to GetMean and GetRMS
934
935 * mhist/MHTriggerLvl0.[h,cc]:
936 - added PrintOutlayers
937
938 * merpp.cc:
939 - added more arguments
940 - replace .raw by .root if no root file given
941 - automatic extension adding
942
943 * mbase/MEvtLoop.[h,cc]:
944 - added estimated run time
945 - in Process: Changes type of rc from Bool_t to Int_t
946
947 * mmain/MStatusDisplay.cc:
948 - changed order in Tab-menu
949
950 * mraw/MRawFileRead.cc:
951 - consistency check for 0xc0c1 files
952
953 * mraw/MRawRunHeader.cc:
954 - initialize variables
955 - added 0xc0c1 support
956
957
958
959 2003/07/29: Thomas Bretz
960
961 * manalysis/MBlindPixelCalc.cc:
962 - count only pixel which contents are adde
963
964 * mbase/MArgs.cc:
965 - added namespace
966
967 * mbase/MDirIter.h:
968 - added rec-argument to constructor
969
970 * mfileio/MCT1ReadPreProc.[h,cc], mfileio/MReadRflFile.[h,cc]:
971 - adapted to virtual base function
972
973 * mfileio/MRead.[h,cc]:
974 - added AddFiles(MDirIter&)
975 - changed AddFile to virtual
976
977 * mfileio/MReadTree.cc:
978 - use AddFile in the constructor
979
980 * mhist/MH.[h,cc]:
981 - remove 'nonew' from option
982
983 * mhist/MHHadronness.[h,cc]:
984 - added GetHadronness
985 - changed output
986
987 * mhist/MHMatrix.[h,cc]:
988 - use TMatrixRow in shuffle
989 - added ReduceRows
990 - use default for PrintStatistics
991 - removed graphics from Fill - will crash in batch mode
992
993 * mimage/ImageLinkDef.h, mimage/Makefile:
994 - added MImgCleanTGB
995
996 * mimage/MCameraSmooth.h:
997 - fixed a typo
998
999 * mmain/MStatusDisplay.cc:
1000 - added sanity check to HasCanvas
1001
1002 * mranforest/MHRanForest.cc, mranforest/MHRanForestGini.cc:
1003 - fixed a crashed caused by GetMaximum in newer root versions
1004 - optimized some small pieces of code
1005 - SetRangeUser removed, problems with newer root verion using
1006 roots auto-scale instead
1007
1008 * mranforest/MRanForest.cc:
1009 - do not use variables in arguments which can be used locally
1010 - replaced pow(,2) by faster and more accurate val*val
1011 - test gRandom at the beginning of the function
1012 - changed output
1013 - removed TArray::Reset. Not necerry at many places. Instatiation
1014 already initializes array with 0s
1015 - Use a const reference to the matrices instead of a copy!
1016 - Removed some unnecessary castings
1017 - added some const qualifiers
1018 - removed fErr from data members (obsolete)
1019
1020 * mranforest/MRanForestCalc.cc:
1021 - fixed a typo in the comments
1022
1023 * mranforest/MRanTree.[h,cc]:
1024 - do not use variables in arguments which can be used locally
1025 - localized some variables
1026 - test gRandom at the beginning of the function
1027 - added some const qualifiers
1028 - removed TArray::Reset. Not necerry at many places. Instatiation
1029 already initializes array with 0s
1030 - added some overwrites of TreeHad
1031
1032
1033
1034 2003/07/17: Oscar Blanch
1035
1036 * mmc/MMcCorsikaRunHeader.[h,cc]
1037 - add member data fNumTelesope
1038 - add member data fTelescopes
1039 - add member data fViewconeAngles[2]
1040 - add member function Fill_CT
1041 - version increased 2 -> 3
1042
1043 * mmc/MMcRunHeader.[hxx,cxx]
1044 - add member data fImpactMax
1045 - modify member function Fill
1046 - version increased 3 -> 4
1047
1048 * mmc/MMcFadcHeadr.[hxx,cxx]
1049 - add member data f[Ampl,Fwhm]Outer
1050 - add member data fLow2HighGain
1051 - modify member function Set[Ampl,Fwhm]
1052 - add member function SetLow2High
1053
1054 * mmc/Mdefine.h, MFadcDefine.h, MTriggerDefine.h
1055 - MFADC_CHANNELS, CAMERA_PIXELS, TRIGGER_PIXELS -> 3500
1056
1057 * mgeom/MGeomCorsikaCT.[h,cc]
1058 - new class with information of CT location in Corsika simulation
1059
1060 * mgeom/Makefile, GeomLinkDef.h
1061 - add new class
1062
1063
1064
1065
1066
1067 2003/07/14: Wolfgang Wittek
1068
1069 * mhist/MHOnSubtraction.[h,cc]
1070 - add member function GetSignificance()
1071
1072 * mhist/MHMatrix.cc
1073 - add MProgressBar in Fill()
1074
1075 * mmontecarlo/MMcEnergyEst.h
1076 - add member functions GetNumCoeffA()
1077 GetNumCoeffB()
1078
1079 * mfilter/MCT1SelBasic.[h,cc]
1080 - remove runs 601, 613, 614 for MC gamma
1081
1082 * manalysis/MCT1SupercutsCalc.cc
1083 - remove bug (dd2)
1084 - set fMatrix = NULL in constructor
1085
1086 * mgeom.MGeomCamCT1Daniel.[h,cc]
1087 - new; Daniel's CT1 geometry
1088
1089 * mgeom/Makefile
1090 GeomLinkDef.h
1091
1092
1093
1094 2003/07/14: Oscar Blanch
1095
1096 * mgeom/MGeomCamMagic919.[h,cc]
1097 - Geometry for a Magic camera with 919 small pixels
1098
1099 * mgeom/[Makefile, GeomLinkDef.h]
1100 - Compiling the above mentioned geometry
1101
1102
1103
1104 2003/07/13: Thomas Bretz
1105
1106 * mbase/MArgs.[h,cc]:
1107 - fixed compile problem with root 3.02/07
1108
1109 * meventdisp/MGCamDisplay.cc, mevtdisp/MGEvtDislay.cc:
1110 - fixed missing MHCamera::SetOptStat
1111
1112
1113
1114 2003/07/12: Thomas Bretz
1115
1116 * mhistmc/MHMcCT1CollectionArea.[h,cc]:
1117 - made the enum as FillType_t a public member of the class
1118
1119 * macros/CT1collarea.C
1120 - Updated accordingly. Can somebody please check whether it
1121 still works.
1122
1123 * mbase/MArgs.h:
1124 - added some comment
1125
1126 * mraw/MRawRunHeader.cc:
1127 - added an 'inf' to the log-stream
1128
1129 * macros/status.C:
1130 - added some more plots
1131 - added some sanity chacks
1132
1133 * macros/sumevents.C, macros/sumeventserr.C, macros/sumeventsrms.C
1134 macros/sumpedestalrms.C, macros/sumpedestals.C:
1135 - fixed SetOptStat
1136
1137 * manalysis/MBlindPixelCalc.[h,cc]:
1138 - removed dangerous SetPixels(int, short*)
1139 - changed Id to Idx
1140 - fixed a bug in SetPixels which caused crashes
1141 - renamed SetPixels to SetPixelIndices
1142
1143 * mhist/MHCamera.[h,cc]:
1144 - removed SetOptStat and fOptStat - found a better solution
1145 - fixed DistancetoPrimitive to show TPaveStat correctly
1146 - Use GetPainter() instead of an own THistPainter
1147
1148 * mmain/MStatusDisplay.cc:
1149 - some small changes to the layout
1150
1151
1152
1153 2003/07/11: Wolfgang Wittek
1154
1155 * mhist/MHMatrix.cc
1156 - add tlist.PrintStatistics() after event loop
1157
1158
1159
1160 2003/07/08: Abelardo Moralejo
1161
1162 * mmc/MMcEvt.hxx
1163 - Uncommented the getter function for fCoreX and fCoreY (is there
1164 any reason why they were commented out?). Added Getter functions
1165 for the parameters of the longitudinal fit to the particle
1166 distribution of the shower.
1167
1168
1169
1170 2003/07/08: Wolfgang Wittek
1171
1172 * macros/CT1EgyEst.C:
1173 - de-comment filters
1174 - add PrintStatistics after event loop
1175
1176 * manalysis/MEnergyEstParamDanielMkn421.[h,cc]
1177 - new; calculates estimated energy using Daniel's parametrization
1178 and parameter values for Mkn421
1179
1180 * manalysis/AnalysisLinkDef.h
1181 Makefile
1182 - include MEnergyEstParamDanielMkn421
1183
1184 * manalysis/MCT1SupercutsCalc.[h,cc]
1185 - add MHillasSrc.fAlpha to fMap
1186 - add member functions SetParams(Double_t *par)
1187 GetParams(Double_t *par)
1188
1189
1190
1191 2003/07/06: Abelardo Moralejo
1192
1193 * mhistmc/MHMcCT1CollectionArea.[h,cc]
1194 - Added possibility of using a logarithmic or linear scale in
1195 energy. The function MHMcCT1CollectionArea::SetEaxis sets
1196 what should be filled in the energy axis (either the energy
1197 or its decimal logarithm).
1198
1199 * macros/CT1collarea.C
1200 - Added example on how to use the new function
1201 MHMcCT1CollectionArea::SetEaxis
1202
1203
1204
1205 2003/07/06: Thomas Bretz
1206
1207 * Makefile:
1208 - replaced '-shared' by $(DYNLIB)
1209
1210 * Makefile.conf.linux, Makefile.conf.linux-gnu,
1211 Makefile.conf.osf1, Makefile.conf.osf5.1:
1212 - added DYNLIB
1213
1214 * Makefile.conf.darwin:
1215 - added
1216
1217 * mgui/MCamEvent.cc:
1218 - removed obsolete include
1219
1220 * mgui/Makefile:
1221 - removed obsolete include dirs
1222
1223 * mhist/MHCamera.cc:
1224 - fixes for root 3.05/01
1225
1226 * mraw/MRawEvtData.cc:
1227 - added type 1 and 2 to GetPixContent
1228
1229 * mraw/MRawEvtPixelIter.[h,cc]:
1230 - added GetMax[Hi,Lo]GainSample
1231
1232 * macros/pixsatrate.C:
1233 - added
1234
1235 * Makefile.conf.general:
1236 - added -lHistPainter
1237
1238 * NEWS:
1239 - updated
1240
1241 * macros/pixsatrate.C:
1242 - added Saturation rate of lo gains
1243
1244 * macros/sumevents.C, macros/sumeventserr.C,
1245 macros/sumpedestalrms.C, macros/sumpedestals.C:
1246 - fixed axis titles
1247 - use new SetOptStat
1248
1249 * manalysis/MCerPhotAnal2.[h,cc]:
1250 - count and print number of skipped events
1251
1252 * meventdisp/MGCamDisplay.cc:
1253 - fixed a 'division by zero'
1254
1255 * mhist/MHCamEvent.cc, mhist/MHTriggerLvl0.cc:
1256 - take name from MHCamEvent if fNameEvt not available
1257
1258 * mhist/MHCamera.[h,cc]:
1259 - use THistPainter to Draw title and statistics box
1260 - added fOptStat
1261 - added GetMean
1262 - added GetRMS
1263 - some modification for a better layout
1264
1265 * mraw/MRawEvtHeader.cc:
1266 - calculate time from clock ticks
1267
1268 * mbase/MArgs.[h,cc]:
1269 - added
1270
1271 * mbase/Makefile:
1272 - MArgs.cc added
1273
1274 * mbase/BaseLinkDef.h:
1275 - MArgs, MArgsEntry added
1276
1277 * merpp.cc:
1278 - added '-v' option
1279 - changes to use MArgs
1280
1281
1282
1283
1284
1285 2003/07/04: Wolfgang Wittek
1286
1287 * macros/CT1EgyEst.C
1288 - add TCanvas and cd() before calling Draw()
1289
1290 * mhistmc/MHMcEnergyMigration.cc
1291 - swap first 2 arguments of fHist.Fill and fHist2.Fill
1292
1293
1294
1295 2003/07/03: Abelardo Moralejo
1296
1297 * mhistmc/MHMcCT1CollectionArea.cc
1298 - Added code to allow the calculation of CT1 collection areas
1299 at 55 and 65 degrees (from the events in DK's MC library)
1300
1301 * macros/CT1collarea.C
1302 - Changed binning in theta to include high ZAs
1303
1304
1305
1306 2003/07/01: Thomas Bretz
1307
1308 * manalysis/MCerPhotAnal2.cc:
1309 - fixed some problems with the lo-gains
1310
1311 * mraw/MRawEvtPixelIter.cc:
1312 - Determin the maximum sample of the lo gains from the end.
1313
1314
1315
1316 2003/07/01: Abelardo Moralejo
1317
1318 * macros/CT1collarea.C
1319 - changed "const TArrayD xed(10,xedge);" to:
1320 "const TArrayD xed; xed.Set(10,xedge);"
1321 (and the same for yed). Otherwise, a funny Error message was
1322 printed about TArrayD, although everything worked.
1323
1324 * mhistmc/MHMcCT1CollectionArea.cc
1325 - added some comments and made code more readable and more simple
1326 to make it easier the addition of the necessary changes to allow
1327 the use of MC data (from D.Kranich) at zenith angles 55 and 65
1328 degrees.
1329
1330
1331
1332 2003/07/01: Wolfgang Wittek
1333
1334 * manalysis/MSigmabar.cc, manalysis/MCT1PadSchweizer.cc,
1335 manalysis/MCT1PadONOFF.cc, mhist/MHSigmaTheta.cc:
1336 - change code because GetPixRatio returns area(pixel_zero)/area(pixel)
1337 and not area(pixel)/area(pixel_zero)
1338
1339 * macros/CT1Analysis.C, macros/ONOFFCT1Analysis.C
1340 - current versions of CT1 macros
1341
1342 * macros/unfold.C, macros/fluxunfold.C
1343 - macros for testing the unfolding within root
1344
1345
1346
1347 2003/06/30: Thomas Bretz
1348
1349 * macros/pixfirerate.C:
1350 - changed to new style
1351
1352 * manalysis/MCerPhotCalc.cc:
1353 - scale weight so that sum=1
1354
1355 * mhist/MHCamera.h:
1356 - small change
1357
1358 * mmontecarlo/MMcCollectionAreaCalc.cc:
1359 - small simplifications
1360
1361
1362
1363 2003/06/27: Abelardo Moralejo
1364
1365 * mmontecarlo/MMcCollectionAreaCalc.[h,cc],
1366 mhistmc/MHMcCollectionAreaCalc.[h,cc]:
1367 - Adapted to allow their use with multiple files containing
1368 MC data generated with diffferent energy spectra, even with
1369 camera files which have only triggered events inside. Now the
1370 histogram containing all showers (before trigger) is filled
1371 in the ReInit function, and calculation of collection area
1372 is done by CalcEfficiency2(). Some simplifications and cleaning
1373 are still possible.
1374
1375
1376
1377 2003/06/27: Thomas Bretz
1378
1379 * macros/sumevents.C, macros/sumpedestals.C:
1380 - some small changes
1381
1382 * manalysis/MPedestalCam.cc:
1383 - return pixel as used if the value is valid (>=0)
1384
1385 * mhist/HistLinkDef.h, mhist/Makefile:
1386 - MHPixVsTime added (Name is preliminary)
1387
1388 * mhist/MHCamEvent.cc:
1389 - removed including MGeomPix
1390
1391 * mhist/MHCamera.h:
1392 - in SetCamContent copy also number of entries
1393
1394 * mraw/MRawEvtData.cc:
1395 - fixed to support correct pixel numbering
1396
1397 * mhist/MHPixVsTime.[h,cc]:
1398 - added
1399
1400 * mhist/MHCamera.cc:
1401 - changed output of labels for color axis
1402
1403 * mfileio/MCT1ReadPreproc.cc:
1404 - small simplification
1405
1406
1407
1408 2003/06/27: Abelardo Moralejo
1409
1410 * mhistmc/MHMcCT1CollectionArea.cc:
1411 - Added comments, changed theta angle corresponding to first bin to
1412 adapt it to new standard theta-bin definition. This was the reason
1413 for the missing area at low theta.
1414
1415 * macros/CT1collectionArea.C, macros/CT1EgyEst.C:
1416 - Changed theta binnings to adapt them to the new standard.
1417
1418
1419
1420 2003/06/26: Abelardo Moralejo
1421
1422 * macros/CT1EgyEst.C:
1423 - Added to the argument list of CT1EEst the binnings in theta
1424 and energy. Commented out the MLog.h and MLogManip.h, headers,
1425 otherwise it does not run (don't know why). Commented out filters
1426 (my test file does not contain hadronness), please uncomment
1427 them to run on files with hadronness info.
1428
1429 * mhistmc/MHMcEnergyMigration.cc:
1430 - exchanged axes of E_est and E_MC in the 3-d histograms.
1431
1432 * mfileio/MCT1ReadAscii.cc, mfileio/MCT1ReadPreProc.cc,
1433 mhist/MHSigmaPixel.cc, mfileio/MHSigmaTheta.cc,
1434 mimage/MImgCleanStd.cc:
1435 - adapted to new function names in MPedestalPix (please Thomas
1436 check these, I had to do it to make Mars compile)
1437
1438
1439
1440 2003/06/26: Thomas Bretz
1441
1442 * macros/CT1EgyEst.C:
1443 - converted from dos to unix type
1444
1445 * macros/rootlogon.C:
1446 - removed "-fno-rtti" from options for Aclic
1447
1448 * mbase/MLog.h:
1449 - added a comment
1450
1451 * mgeom/MGeomCam.[h,cc], mgeom/MGeomPix.[h,cc],
1452 mgeom/MGeomCamCT1.cc, mgeom/MGeomCamECO1000.cc,
1453 mgeom/MGeomCamECO1000HG.cc, mgeom/MGeomCamMagicHG.cc:
1454 - added support for sectors
1455
1456 * megom/MGeomCamMagic.[h,cc]:
1457 - added sectors
1458
1459 * mhist/MHCamera.[h,cc]:
1460 - convert Option_t in Paint to lower case
1461 - remove 'hist' if detected from Option_t
1462 - check for min==max
1463 - added DrawSectorIndices()
1464 - added TArrayC to AddCamContent
1465 - added TArrayC to SetCamContent
1466 - simplified DistancetoPrimitive
1467
1468 * mraw/MRawEvtData.cc:
1469 - simplified Draw by converting option string to lower case
1470
1471 * mraw/MRawEvtPixelIter.[h,cc]:
1472 - added GetNumMaxLoGainSample
1473
1474 * manalysis/MCT1PadSchweizer.cc, manalysis/MMcPedestalNSBAdd.cc,
1475 manalysis/MSigmabar.cc:
1476 - adapted to new function names in MPedestalPix
1477
1478 * manalysis/MCerPhotAnal.cc:
1479 - adapted to new function names in MPedestalPix
1480 - fixed to work with real data and monte carlo data
1481 - preliminarily removed error of pedestal and pedestalrms
1482
1483 * manalysis/MCerPhotCalc.[h,cc]:
1484 - adapted to new function names in MPedestalPix
1485 - fixed to work with real data and monte carlo data
1486
1487 * manalysis/MMcPedestalCopy.cc, manalysis/MPedCalcPedRun.[h,cc]:
1488 - adapted to new function names in MPedestalPix
1489 - preliminarily removed error of pedestal and pedestalrms
1490
1491 * manalysis/MPedestalCam.[h,cc]:
1492 - adapted to new function names in MPedestalPix
1493 - preliminarily removed error of pedestal and pedestalrms
1494 - fixed GetPixelContent (do not return Pedestal*PixRatio)
1495
1496 * manalysis/MPedestalPix.[h,cc]:
1497 - removed old variables
1498 - introduced Pedestal for pedestal
1499 - introduced pedestalRMS for the rms of the pedestal
1500 - error of both values still missing
1501
1502 * meventdisp/MGCamDisplay.cc:
1503 - fixed display, displays now:
1504 + Number Of Photons
1505 + Pedestal
1506 + PedestalRMS
1507 + Number of Photons/PedestalRMS
1508
1509 * mimage/MImgCleanStd.[h,cc]:
1510 - fixed image cleaning in the sense that erronously the error
1511 of the number of photons was used instead of the error of
1512 the PMT offset (pedestal)
1513 - introduced some debugging option
1514
1515 * mmontecarlo/MMcCollectionAreaCalc.cc:
1516 - minor change
1517
1518 * macros/sumevents.C, macros/sumpedestals.C:
1519 - added
1520
1521 * mhist/MHCamEvent.cc:
1522 - do not scale with 100
1523
1524 * mhist/MHCamera.cc:
1525 - fixed displaying number of entries when used
1526 SetCamContent(MHCamera&)
1527
1528
1529
1530 2003/06/25: Thomas Bretz
1531
1532 * mgeom/MGeomCam.cc:
1533 - fixed the description of GetPixRatio
1534
1535
1536
1537 2003/06/25: Abelardo Moralejo
1538
1539 * mimage/MImgCleanStd.cc:
1540 - Changed name of variable "ratio" to "factor", wherever it meant
1541 the square root of the ratio between the area of an inner pixel
1542 and the current pixel (it was confusing).
1543
1544
1545
1546 2003/06/24: Thomas Bretz
1547
1548 * manalysis/MCT1SupercutsCalc.[h,cc]:
1549 - implemented Mapping for Supercuts
1550 - changed data member arrays to TArrayD
1551
1552 * manalysis/MEnergyEstParam.h:
1553 - added a comment
1554
1555 * mhist/MHHadronness.[h,cc]:
1556 - implemented mapping
1557 - implemented calculating Acc_g/sqrt(Acc_h) for filtercuts
1558
1559 * macros/status.C:
1560 - removed MSrcPosCam
1561
1562 * mevtdisp/MGCamDisplay.cc:
1563 - display ellipse in all canvas'
1564
1565 * macros/readrfl.C:
1566 - adapted
1567
1568 * manalysis/MMcTriggerLvl2.cc, meventdisp/MGEvtDisplay.cc,
1569 mraw/MRawEvtPixelIter.cc:
1570 - adapted
1571
1572 * mgui/MCamEvent.[h,cc], mhist/MHCamEvent.[h,cc]:
1573 - more comments
1574
1575 * mgui/MHexagon.[h,cc]:
1576 - removed obsolete destructor
1577
1578 * mhist/MHCamera.[h,cc]:
1579 - removed fPhotons
1580 - removed ShowRflEvent
1581 - added comments
1582
1583 * mhist/MHTriggerLvl0.cc:
1584 - fixed comments
1585
1586 * mraw/MRawEvtData.cc:
1587 - some small changes
1588
1589 * mreflector/MRflEvtData.[h,cc]:
1590 - implemented Paint function
1591
1592 * meventdisp/MGCamDisplay.cc:
1593 - Set Name and title of MHCamera instances
1594
1595 * mraw/MRawEvtData.cc:
1596 - fixed a degug level problem
1597
1598 * mgui/MHexagon.[h,cc]:
1599 - fixed CopyConstructor
1600
1601 * mbase/MLog.cc:
1602 - fixed a bug in NoColor mode
1603
1604
1605
1606 2003/06/23: Thomas Bretz
1607
1608 * manalysis/MBlindPixelCalc.[h,cc], manalysis/MCT1PadONOFF.[h,cc],
1609 manalysis/MCT1PadSchweizer.[h,cc], manalysis/MCompProbCalc.[h,cc],
1610 manalysis/MCT1PointingCorrCalc.[h,cc], manalysis/MEnergyEstimate.[h,cc],
1611 manalysis/MCT1SupercutsCalc.[h,cc], manalysis/MEnergyEstParam.[h,cc],
1612 manalysis/MFiltercutsCalc.[cc,h], manalysis/MMatrixLoop.[h,cc],
1613 manalysis/MMcPedestalCopy.[h,cc], manalysis/MMcPedestalNSBAdd.[h,cc],
1614 manalysis/MMcTriggerLvl2Calc.[h,cc], manalysis/MPadding.[h,cc],
1615 manalysis/MMultiDimDistCalc.[h,cc], manalysis/MPedCalcPedRun.[h,cc],
1616 manalysis/MPedestalCalc.[h,cc], manalysis/MPointingCorr.[h,cc],
1617 mbase/MClone.[h,cc], mbase/MGTask.[h,cc], mbase/MPrint.[h,cc],
1618 mbase/MTask.[h,cc], mbase/MTaskInteractive.[h,cc],
1619 mbase/MTaskList.[h,cc], mtools/MChisqEval.[h,cc],
1620 mbase/MContinue.[h,cc], mdatacheck/MDumpEvtHeader.[h,cc]
1621 mfileio/MCT1ReadAscii.[h,cc], mfileio/MCT1ReadPreProc.[h,cc],
1622 mfileio/MReadCurrents.[h,cc], mfileio/MReadMarsFile.[h,cc],
1623 mfileio/MReadRflFile.[h,cc], mfilter/MF.[h,cc],
1624 mfilter/MFAlpha.[h,cc], mfilter/MFCT1SelBasic.[h,cc],
1625 mfilter/MFCT1SelFinal.[h,cc], mfilter/MFCT1SelStandard.[h,cc],
1626 mfilter/MFDataChain.[h,cc], mfilter/MFDataMember.[h,cc],
1627 mfilter/MFEnergySlope.[h,cc], mfilter/MFEventSelector.[h,cc],
1628 mfilter/MFEventSelector2.[h,cc], mfilter/MFParticleId.[h,cc],
1629 mfilter/MFTriggerLvl1.[h,cc], mfilter/MFTriggerLvl2.[h,cc],
1630 mfilter/MFilterList.[h,cc], mhist/MFillH.[h,cc],
1631 mimage/MCameraSmooth.[h,cc], mimage/MHillasCalc.[h,cc],
1632 mimage/MHillasSrcCalc.[h,cc], mimage/MImgCleanStd.[h,cc],
1633 mimage/MNewImageParCalc.[h,cc], mmontecarlo/MMcThresholdCalc.[h,cc],
1634 mranforest/MRanForestCalc.[h,cc], mranforest/MRanForestFill.[h,cc]
1635 mmontecarlo/MMcTimeGenerate.[h,cc], mranforest/MRanForestGrow.[h,cc],
1636 mmontecarlo/MMcCollectionAreaCalc.[h,cc], mraw/MRawFileWrite.[h,cc],
1637 mmontecarlo/MMcTriggerRateCalc.[h,cc], mraw/MRawFileRead.[h,cc],
1638 manalysis/MSigmabarCalc.[h,cc], manalysis/MCerPhotAnal.[h,cc],
1639 manalysis/MCerPhotCalc.[h,cc]:
1640 - changed Bool_t in *Process to Int_t to support newer root
1641 versions correctly - PRELIMINARY (will be replaced by
1642 enums in the future)
1643
1644 * manalysis/MCerPhotEvt.[h,cc]:
1645 - added case 3 and 4 to GetPixelContent
1646 - changed definition of GetPixelContent
1647
1648 * manalysis/MCurrents.[h,cc], manalysis/MPedestalCam.[h,cc]:
1649 - changed definition of GetPixelContent
1650
1651 * manalysis/MFiltercutsCalc.[h,cc]:
1652 - Added list to ListOfCleanups, and set kMustCleanup for list
1653 - Set kMustCleanup for external filters
1654
1655 * mbase/MEvtLoop.[h,cc]:
1656 - added to ListOfCleanups
1657 - Set kMustCleanup for parlist, progressbar and display
1658 - added some checks for root's Batch-Mode
1659 - no need for checking ListOfSpecials for fDisplay (this is now
1660 handled through the Cleanups)
1661 - No need for kFileExit anymore (this can now be handles through
1662 the Cleanups)
1663 - added recursiveRemove to support Cleanups
1664 - added SetDisplay to set kMustCleanup for fDisplay
1665
1666 * mbase/MTaskList.cc, mdata/MDataArray.cc, mdata/MDataList.cc,
1667 mfilter/MFilterList.cc:
1668 - added lists to ListOfCleanups
1669 - Set kMustCleanup for the lists
1670
1671 * mbase/MParList.[h,cc]:
1672 - added lists to ListOfCleanups
1673 - Set kMustCleanup for the lists
1674 - added kCanDelete option to destructor
1675 - set kMustCleanup for all containers added to thelist
1676
1677 * mdatacheck/DataCheckLinkDef.h, mdatacheck/Makefile:
1678 - removed unnecessary MDumpEvtHeader
1679
1680 * mbase/MContinue.[h,cc]:
1681 - added SetDisplay to support setting display for the filter
1682 - added SetLogStream to support setting logstream for the filter
1683
1684 * mfilter/MFCT1SelBasic.cc, mfilter/MFCT1SelFinal.cc,
1685 mfilter/MFCT1SelStandard.cc:
1686 - added Set-function to simplify Process
1687
1688 * mgui/MCamEvent.[h,cc]:
1689 - changed GetPixelContent definition
1690
1691 * mhist/MH.cc:
1692 - fixed Draw(TH1&, TH1&) and DrawCopy layout for newer root versions
1693
1694 * mimage/MImgCleanStd.cc:
1695 - fixed a bug in the access to ispixused-array (GetNeighbor
1696 could exceed maximum entries.
1697
1698 * mmain/MStatusDisplay.[h,cc]:
1699 - preliminary fixes to support root's batch mode
1700 - removed adding MStatusDisplay to ListOfCleanups
1701 - changed code updating the Canvas'
1702 - exit now handled by Cleanups, so this can be deleted immediatly
1703
1704 * mraw/MRawEvtData.[h,cc]:
1705 - changed definition of GetPixelContent
1706 - added code to GetPixelContent
1707
1708 * mraw/MRawEvtPixelIter.[h,cc]:
1709 - returns GetNumMaxHiGainSample
1710
1711 * mreflector/MRflEvtData.[h,cc]:
1712 - use static_cast in GetPhoton
1713 - added GetPixelContent
1714
1715 * mhist/MHTriggerLvl0.[h,cc], MHmhist/Camera.[h,cc],
1716 mhist/MHCamEvent.[h,cc]:
1717 - added
1718
1719 * manalysis/MSigmabar.cc:
1720 - unimportant simplification
1721
1722 * manalysis/MSigmabarCalc.cc:
1723 - added a preliminary workaround to support files without MMcEvt
1724 - make use of FLT_MAX
1725
1726 * mgeom/MGeomCam.[h,cc]:
1727 - Moved fPixels from pointer to an instance
1728 - removed destructor
1729 - use static_cast on operator[]
1730 - Use ForEach macro in CheckOuterRing
1731
1732 * mhist/MHSigmaTheta.cc:
1733 - added a preliminary workaround to support files without MMcEvt
1734
1735 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
1736 - removed MCT1PadONOFF
1737
1738 * manalysis/MCerPhotEvt.h:
1739 - added //-> to fPixels
1740
1741 * meventdisp/Makefile:
1742 - added -I../mhist
1743
1744 * manalysis/MMcTriggerLvl2.[h,cc], meventdisp/MGCamDisplay.[h,cc]:
1745 - replaced MCamDisplay by MHCamera
1746
1747 * mgui/GuiLinkDef.h, mgui/Makefile:
1748 - removed MCamDisplay
1749
1750 * mhist/HistLinkDef.h, mhist/Makefile:
1751 - removed MHCerPhotEvt
1752 - removed MHCurrents
1753 - removed MHTrigLvl0
1754 - removed MHOnSubtraction
1755 - added MHCamera
1756 - added MHCamEvent
1757
1758 * macros/sumcurrents.C:
1759 - adapted to changes
1760 - added filename to canvas
1761
1762 * macros/readMagic.C, macros/readCT1.C, macros/status.C,
1763 macros/readcurrents.C, macros/readrfl.C:
1764 - adapted to changes
1765
1766 * mbase/MAGIC.h:
1767 - replaced extern by R__EXTERN
1768
1769 * mbase/MParContainer.[h,cc]:
1770 - added a non empty destructor with some debug options
1771
1772 * mbase/MPrint.cc:
1773 - fixed a bug (used kSKIP instead of kSkip)
1774
1775
1776
1777 2003/06/19: Thomas Bretz
1778
1779 * mgui/MCamDisplay.[h,cc]:
1780 - fixed color palette when loading MCamDisplay
1781
1782 * mevtdisp/MGEvtDisplay.cc:
1783 - fixed a bug in ProcessMessage, 'Exit' still doesn't work.
1784
1785
1786
1787 2003/06/18: Thomas Bretz
1788
1789 * macros/sumcurrents.C:
1790 - added MDirIter support
1791 - fixed the rel. error calculation
1792 - some small corrections to the layout
1793
1794 * mhist/MHCurrents.cc:
1795 - changed histogram name
1796 - added axis titles
1797
1798 * mbase/MLog.cc:
1799 - include iomanip onstead of MLogManip
1800
1801 * mbase/MLogManip.h:
1802 - replaced preprocessor defintions for all, warn, inf, err and dbg
1803 by const variable declarations
1804 - fixed dynamic_casts
1805
1806 * macros/merpp.C:
1807 - made capable of more than one directory
1808
1809 * mmain/MStatusDisplay.cc:
1810 - removed an unsused variable
1811
1812 * Makefile.conf.osf1, Makefile.conf.osf5.1:
1813 - added definitions for __USE_STD_IOSTREAM and R__ANSISTREAM
1814 tp be able to compile on Alphas again
1815
1816 * manalysis/MCT1PadONOFF.cc:
1817 - included math.h
1818 - commented out some code to be able to compile on Alpha - FIXME
1819
1820 * mbase/MDirIter.h:
1821 - fixed a bug in the definition of MatchFilter
1822
1823 * mraw/MRawFileWrite.h:
1824 - default mode changed from UPDATE to RECREATE
1825 - default compression level changed from 9 to 1
1826
1827 * mraw/MRawEvtData.[h,cc]:
1828 - fixed to skip non connected pixels
1829
1830 * mraw/MRawRunHeader.[h,cc]:
1831 - added GetNumConnectedPixels
1832
1833
1834
1835
1836 2003/06/17: Oscar Blanch
1837
1838 * mgeom/MGeomCamECO1000HG.cc
1839 - fixed a bug in NN table
1840
1841 * mgeom/MGeomCamMagicHG.[h,cc]
1842 - New geometry for a high granularity hipothetic Magic camera
1843
1844 * mgeom/Makefile and mgeom/GeomLinkDef.h
1845 - Introduction of MGeomMagicHG class.
1846
1847
1848
1849 2003/06/17: Thomas Bretz
1850
1851 * meventdisp/MGEvtDisplay.cc:
1852 - fixed a bug which caused a endlessloop
1853
1854 * mmain/MStatusDisplay.cc:
1855 - fixed UpdatePSHeader for gcc 3.* and Suse 8.2
1856
1857 * manalysis/MCurrents.h:
1858 - fixed a bug in the const operator[]
1859
1860 * mgui/MCamDisplay.[h,cc]:
1861 - set ClassDef to 1 so that the camera display can be written into
1862 a root file
1863 - fixed destructor (didn't fit default constructor)
1864 - implemented FillRandom for test cases
1865
1866 * mgui/MHexagon.h
1867 - set ClassDef to 1 so that the camera display can be written into
1868 a root file
1869
1870
1871
1872 2003/06/16: Thomas Bretz
1873
1874 * mhist/MHOnSubtraction.cc:
1875 - worked around the non compiling source file
1876
1877 * merpp.cc:
1878 - set compression level default = 1
1879
1880 * macros/readCT1.C, macros/readMagic.C, macros/readcurrents.C,
1881 meventdisp/MGCamDisplay.cc
1882 - adapted to new MCamDisplay and MCamEvent
1883
1884 * macros/sumcurrents.C:
1885 - enhanced
1886
1887 * manalysis/MCerPhotCalc.[h, cc]:
1888 - simplified algorithm
1889
1890 * manalysis/MCerPhotEvt.[h,cc], manalysis/MCurrents.[h,cc],
1891 manalysis/MPedestalCam.[h,cc]:
1892 - derived from MCamEvent
1893
1894 * manalysis/MMcPedestalNSBAdd.cc:
1895 - minor change
1896
1897 * mbase/BaseLinkDef.h, mbase/Makefile:
1898 - added MDirIter
1899
1900 * mbase/MDirIter.[h,cc]:
1901 - added
1902
1903 * mbase/MParList.cc:
1904 - enhnced some output
1905
1906 * mbase/MTaskInteractive.cc:
1907 - fixed a bug
1908
1909 * mbase/MTaskList.cc:
1910 - added handling of gui events for Pre- and PostProcess
1911
1912 * mgeom/MGeomPix.cc:
1913 - added a comment
1914
1915 * mgui/MCamDisplay.[h,cc] - PRELIMINARY:
1916 - added a notification list
1917 - fixed SetRange if pad is not the main pad
1918 - new Fill functions using MCamEvent, removed old ones
1919
1920 * mhist/MFillH.cc:
1921 - check for the existance of the canvas
1922
1923 * mhist/MHCerPhotEvt.cc:
1924 - take usage of MCamEvent
1925
1926 * mhist/MHCurrents.cc:
1927 - take usage of MCamEvent
1928 - added rms
1929
1930 * mmain/MStatusDisplay.[h,cc]:
1931 - added "Reset" and "Remove Tab" to menu bar
1932
1933 * mraw/MRawEvtData.[h,cc]:
1934 - draw hi- and logains
1935 - derived from MCamEvent
1936
1937 * mraw/MRawEvtPixelIter.[h,cc]:
1938 - added GetVarHiGainSamples
1939
1940 * mraw/Makefile:
1941 - added -I../mgui - PRELIMINARY
1942
1943 * mhist/MH.cc:
1944 - fixed Draw(TH1&,TH1&) for newer root versions
1945
1946 * mhist/MHHadronness.cc:
1947 - fixed call to fGraph->SetMaximum(1) for newer root versions
1948
1949 * mmain/MStatusDisplay.cc:
1950 - fixed for gcc 3.* and newer root versions
1951
1952
1953
1954
1955 2003/06/13: Robert Wagner
1956 * mhist/MHOnSubtraction.cc
1957 - removed casts from double to Double_t found by gcc 3.3
1958 - added MHOnSubtraction::CalcLightCurve, a methods towards a
1959 lightcurve
1960
1961
1962
1963 2003/06/13: Thomas Bretz (making Mars work with gcc 3.3 on Suse 8.2)
1964
1965 * Makefile.conf.linux:
1966 - removed nonull-objects, Wtraditional and Wnested-externs
1967 due to warnings in gcc 3.3
1968
1969 * *:
1970 - added 'using namespace std;'
1971 - exchanged *.h C++ headers by correct headers (like <fstream>)
1972 - replaced forward declarations of streams by <iosfwd>
1973
1974 * manalysis/MCerPhotAnal.cc:
1975 - cast arguments of sqrt to correct type
1976 - corrected argument type for SetPedestalRms
1977
1978 * manalysis/MCurrents.h:
1979 - const operator[] uses 'this' now
1980
1981 * manalysis/MEnergyEstParam.[h,cc], manalysis/MSigmabarParam.[h,cc]:
1982 - fixed definition of Print
1983
1984 * manalysis/MMcPedestalCopy.cc, manalysis/MPedCalcPedRun.cc,
1985 mgui/MCamDisplay.cc, mmontecarlo/MMcThresholdCalc.cc:
1986 - cast arguments of sqrt to correct type
1987
1988 * manalysis/MMultiDimDistCalc.cc:
1989 - changed type of numg/numh to Int_t
1990
1991 * mbase/BaseLinkDef.h:
1992 - removed pragma for __omanip_debug
1993
1994 * mbase/MLog.[h,cc]:
1995 - fixed copy constructor
1996 - removed usage of mkstemp -- TO BE FIXED
1997
1998 * mbase/MLogManip.[h,cc]:
1999 - completely replaced
2000
2001 * mdata/MDataArray.cc:
2002 - fixed variable type ncols (Double_t -> Int_t)
2003
2004 * mdata/MDataChain.cc:
2005 - fixed argument type of gRandom->Integer()
2006
2007 * meventdisp/MGEvtDisplay.[h,cc]:
2008 - implemented skiping of events which have 0 Pixels
2009
2010 * mfileio/MCT1ReadPreProc.cc:
2011 - fixed conversion for istream::read from Byte_t* to char*
2012 - fixed argument type in Fill (fmcsize_phel)
2013
2014 * mfileio/MChain.h:
2015 - ResetTree must also set fTreeNumber to -1 due to changes in
2016 TChain::LoadTree
2017
2018 * mfilter/MFAlpha.[h,cc]:
2019 fixed type of Alpha in Init (Float_t instead of Int_t)
2020
2021 * mfilter/MFEventSelector2.[h,cc]:
2022 - renamed Read member function to ReadDistribution
2023
2024 * mfilter/MFilterList.h:
2025 - fixed overloading of GetRule
2026
2027 * mhist/MBinning.cc, mhist/MH3.cc:
2028 - removed default argument in source file
2029
2030 * mhist/MHArray.cc:
2031 fixed type of sstyle (Stat_t -> Int_t)
2032
2033 * mhist/MHCerPhotEvt.[h,cc], mhist/MHCurrents.[h,cc]:
2034 - fixed definition of Clear()
2035
2036 * mhist/MHFadcCam.[h,cc]:
2037 - renamed Reset to ResetEntry
2038
2039 * mhistmc/MHMcEnergy.cc:
2040 - fixed argument type of log
2041
2042 * mhistmc/MHMcRate.cc:
2043 - cast argument of pow() to correct type
2044
2045 * mimage/MHillas.cc:
2046 - replaced default value for MeanX and MeanY by 0
2047
2048 * mmain/MMars.cc:
2049 - fixed argument type in TGLayoutHints
2050
2051 * mmain/MStatusDisplay.cc:
2052 - fixed some argument types
2053 - for the moment removed the update of the ps-header
2054
2055 * mmc/MMcTrig.cxx:
2056 - use binary shift instead of pow for power of two
2057
2058 * mmontecarlo/MMcEnergyEst.[h,cc]:
2059 - declared fcn as static
2060 - fixed definition of Print
2061
2062 * mmontecarlo/MMcTimeGenerate.cc:
2063 - fixed argument type of SetTime
2064
2065 * mmontecarlo/MMcTriggerRateCalc.[h,cc]:
2066 - fixed definition of Draw
2067
2068 * mfileio/MReadRflFile.cc, mraw/MRawCrateData.cc, mraw/MRawEvtData.cc,
2069 mraw/MRawEvtHeader.cc, mraw/MRawRunHeader.cc:
2070 - fixed conversion for istream::read from Byte_t* to char*
2071
2072 * mreflector/MRflEvtData.cc, mreflector/MRflSinglePhoton.cc:
2073 - fixed definition of Print
2074
2075
2076
2077 2003/06/13: Robert Wagner
2078 * mhist/MHOnSubtraction.cc
2079 - Improvements in output
2080
2081
2082
2083 2003/06/12: Thomas Bretz
2084
2085 * mgui/MCamDisplay.h:
2086 - added //*MENU* to SetAutoScale, SetMinimum, SetMaximum
2087
2088
2089
2090 2003/06/11: Robert Wagner
2091
2092 * mhist/MHOnSubtraction.[h,cc]
2093 - Some bugfixes, e.g. concerning binning of result histograms
2094 - Improvements in output
2095
2096
2097
2098
2099
2100 2003/06/09: Wolfgang Wittek
2101
2102 * macros/CT1Analysis.C
2103 - replace MPadSchweizer by MCT1PadSchweizer
2104
2105 * macros/ONOFFCT1Analysis.C
2106 - current version of the macro for the analysis using ON, OFF and MC data
2107
2108 * manalysis/MPadSchweizer.[h,cc]
2109 MPadONOFF.[h,cc]
2110 - delete
2111
2112 * manalysis/MCT1PadSchweizer.[h,cc]
2113 MCT1PadONOFF.[h,cc]
2114 - add
2115
2116 * manalysis/Makefile
2117 AnalysisLinkdef.h
2118 - replace MPadSchweizer and MPadONOFF
2119 by MCT1PadSchweizer and MCT1PadONOFF
2120
2121
2122
2123 2003/06/06: Robert Wagner
2124
2125 * mhist/MHOnSubtraction.[h,cc]
2126 - Class for extracting a gamma signal from on data only. Works
2127 on fully differential data in Alpha, Energy and Theta as well
2128 as on single Alpha plots. Experimental version, expect
2129 functionality but code still optimized for debugging purposes
2130
2131 * mhist/MHAlphaEnergyTheta.cc
2132 - Fill signed alpha value instead of absolute value
2133
2134
2135
2136 2003/06/06: Wolfgang Wittek
2137
2138 * macros/optPad.C
2139 - macro for testing the optimal padding
2140
2141
2142
2143 2003/06/05: Abelardo Moralejo
2144
2145 * mhist/MHTrigLvl0.[h,cc]:
2146 - added. This is intended to find "hot" pixels firing too often
2147 or pixels firing too rarely. Very preliminar!
2148
2149 * macros/pixfirerate.C:
2150 - added. An example on how to use the class above.
2151
2152 * mhist/Makefile, HistLinkDef.h :
2153 added new class.
2154
2155
2156
2157 2003/06/05: Thomas Bretz
2158
2159 * mbase/MEvtLoop.cc:
2160 - fixed some typos in the comments
2161
2162 * meventdisp/MGCamDisplay.cc:
2163 - added MHillasSrc to eventloop
2164
2165 * meventdisp/MGEvtDisplay.cc:
2166 - print MC informations to screen, too
2167
2168 * mfileio/MReadCurrents.cc:
2169 - added a comment
2170
2171 * mhist/MHCerPhotEvt.h:
2172 - removed typo
2173
2174 * mimage/MHillasSrcCalc.cc:
2175 - create a default source if now source is available
2176
2177
2178
2179 2003/06/03: Thomas Bretz
2180
2181 * macros/readcurrents.C:
2182 - display currents in Log-Scale
2183
2184 * mgui/MCamDisplay.[h,cc]:
2185 - introduced fMinimum
2186 - introduced fMaximum
2187 - introduced fData
2188 - removed Set-functions
2189 - introduced Update()
2190 - introduced Log-Scale
2191
2192 * macros/readCT1.C:
2193 - fixed a typo
2194
2195 * mbase/MTaskInteractive.[h,cc]:
2196 - added
2197
2198 * mbase/Makefile, mbase/BaseLinkDef.h:
2199 - added MTaskInteractive
2200
2201 * mhist/MHCurrents.[h,cc]:
2202 - added (PRELIMINARY)
2203
2204 * mhist/Makefile, mhist/HistLinkDef.h:
2205 - added MHCurrents
2206
2207 * mgui/MCamDisplay.[h,cc]:
2208 - changed number of ItemsLegend to display the maximum, too
2209
2210 * macros/sumcurrents.C:
2211 - added
2212
2213
2214
2215 2003/06/03: Wolfgang Wittek
2216
2217 * mfileio/MCT1ReadPreProc.[h,cc]
2218 - reset blind pixels for each event
2219 (because they may have been changed by the padding)
2220
2221 * macros/ONOFFCT1Analysis.C
2222 - will be the macro for the CT1 analysis using ON and OFF data
2223
2224 * manalysis/MPadONOFF.[h,cc]
2225 - new class
2226 - class for the padding of ON/OFF data
2227
2228 * manalysis/MPadSchweizer.[h,cc]
2229 - remove fBlinds->Clear() because the resetting of the
2230 blind pixels is now done in MCT1ReadPreProc
2231
2232
2233
2234 2003/06/02: Thomas Bretz
2235
2236 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
2237 - added MCurrents
2238
2239 * manalysis/MCerPhotEvt.[h,cc]:
2240 - added MGeomCam argument to GetRatioMin/Max
2241
2242 * mfileio/FileIOLinkDef.h, mfileio/Makefile:
2243 - added MReadCurrents
2244
2245 * mfileio/MReadCurrents.[h,cc]:
2246 - added
2247
2248 * manalysis/MCurrents.[h,cc]:
2249 - added
2250
2251 * mgui/MCamDisplay.[h,cc]:
2252 - added current support
2253
2254 * mbase/MTime.h:
2255 - preliminary changes to support currents
2256
2257 * mhist/MH.[h,cc]:
2258 - added usescreenfactor to MakeDefCanvas
2259
2260
2261
2262 2003/05/30: Wolfgang Wittek
2263
2264 * macros/CT1Analysis.C
2265 - current version of the CT1Analysis.C macro for the analysis of
2266 CT1 data using ON and MC data
2267
2268
2269
2270 2003/05/27: Thomas Bretz
2271
2272 * mreflector/Makefile:
2273 - removed obsolete includes
2274
2275 * mbase/MLogManip.h:
2276 - for the moment removed dbg<< from dbginf again
2277
2278 * mimage/MHNewImagePar.cc:
2279 - security check in fill
2280
2281 * mmain/MAnalysis.cc:
2282 - fixed filling of MHNewImagePar
2283
2284
2285
2286 2003/05/26: Wolfgang Wittek
2287
2288 * mfileio/MCT1ReadPreProc.cc
2289 - put back : if (event.spixsig_10thphot[i]==0)
2290 continue;
2291
2292 * manalysis/MPadSchweizer.cc
2293 - add pixels to MCerPhotEvt which are not yet in;
2294 set their number of photons equal to zero
2295
2296
2297
2298 2003/05/26: Thomas Bretz
2299
2300 * mhist/MHCerPhotEvt.cc, mfileio/MCT1ReadAscii.cc:
2301 - InitSize --> FixSize
2302
2303 * manalysis/MMcPedestalNSBAdd.cc:
2304 - fixed a typo (* instead of /)
2305
2306
2307
2308 2003/05/23: Abelardo Moralejo
2309
2310 * mreflector/Makefile:
2311 - added (was missing)
2312
2313
2314
2315 2003/05/23: Thomas Bretz
2316
2317 * Makefile:
2318 - added mreflector
2319
2320 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc:
2321 - use FixSize instead of InitSize
2322
2323 * manalysis/MCerPhotEvt.[h,cc]:
2324 - replaced InitSize by FixSize (seems to be more logical)
2325
2326 * manalysis/MMcPedestalNSBAdd.cc:
2327 - replaced GetR by GetPixRatio
2328
2329 * manalysis/MPedestalCam.cc:
2330 - replaced GetEntries by GetEntriesFast
2331
2332 * mfileio/FileIOLinkDef.h, mfileio/Makefile:
2333 - added MReadRflFile
2334
2335 * mgeom/MGeomCam.[h,cc], mgeom/MGeomPix.[h,cc],
2336 mgeom/MGeomCamMagic.[h,cc]:
2337 - replaced R by D
2338
2339 * mgui/MCamDisplay.[h,cc]:
2340 - added TClonesArray to display reflector events
2341 - added FillRflEvent
2342 - added ShowRflEvent
2343 - adapted Paint function
2344
2345 * mgui/MHexagon.[h,cc]:
2346 - replaced GetR by GetD
2347 - added DistanceToPrimitive (capital T)
2348
2349 * mgui/Makefile:
2350 - added mreflector
2351
2352 * mfileio/MReadRflFile.[h,cc]:
2353 - added
2354
2355 * mreflector, mreflector/Makefile, mreflector/ReflectorLinkDef.h,
2356 mreflector/MRflEvtData.[h,cc], mreflector/MRflSinglePhoton.[h,cc]:
2357 mreflector/MRflEvtHeader.[h,cc], mreflector/MRflRunHeader.[h,cc]:
2358 - added
2359
2360 * macros/readRfl.C:
2361 - added
2362
2363
2364
2365 2003/05/22: Abelardo Moralejo
2366
2367 * mhist/MHMatrix.[h,cc]
2368 - add member function ShuffleRows() to randomize the order of the
2369 matrix rows. This is useful for instance for the random forest,
2370 (See RanForest.C) when we feed a hadron training sample with
2371 both protons and helium nuclei: if they are ordered (first all
2372 events of one type, then those of the other) the method does not
2373 seem to work well. Any other kind of ordering might be harmful
2374 as well (in theta, phi or whatever).
2375
2376
2377
2378 2003/05/22: Wolfgang Wittek
2379
2380 * mfileio/MCT1ReadPreProc.[h,cc]
2381 - add member function DiscreteTheta
2382 - discretize the Theta according to the binning in Theta
2383 (for data and MC)
2384 original Theta is stored in the container "ThetaOrig"
2385 the discretized Theta is stored in MMcEvt.fTelescopeTheta
2386
2387
2388
2389 2003/05/21: Thomas Bretz
2390
2391 * mfileio/MReadTree.cc:
2392 - changed text of a warning
2393 - removed obsolete comment
2394
2395 * mfileio/MWriteRootFile.[h,cc]:
2396 - changed Print function to support kIsNewTree flag
2397 - changed BIT(15) to BIT(16) because it is already used by TBranch
2398
2399
2400
2401 2003/05/21: Wolfgang Wittek
2402
2403 * mhist/MHBlindPixels.[h,cc]
2404 - change 1D histogram into 2D histogram (pixel Id vs. Theta)
2405 - add 2D histogram : no.of blind pixels vs. Theta
2406
2407 * mhist/MHSigmaTheta.cc
2408 - correct "BinningPix"
2409
2410 * manalysis/MPadSchweizer.[h,cc]
2411 - add simulation of blind pixels
2412
2413 * mhist/MHMatrix.cc
2414 - in DefRefMatrix : allow variable bin size for 'hth' and 'hthd'
2415
2416
2417
2418 2003/05/20: Oscar Blanch Bigas
2419
2420 * mgeom/MGeomCamECO1000HG.[h,cc]
2421 - new files for ECO1000 camera geometry with pixels
2422 of half angualr size.
2423
2424 * mgeom/Mkefile:
2425 - added MGeomCamECO1000HG.[h,cc] files
2426
2427 * mgeom/GeomLinkDef.h
2428 - added class MGeomCamECO1000HG
2429
2430
2431
2432 2003/05/20: Thomas Bretz
2433
2434 * mbase/MLog.h:
2435 - added Separator member function
2436
2437 * mfileio/MReadMarsFile.cc:
2438 - moved output in Notify to MReadTree::Notify
2439 - call MReadTree:Notify in Notify
2440
2441 * mfileio/MReadTree.[h,cc]:
2442 - do not try to delete a Baddress if it is NULL ("*")
2443 - added CheckBranchSize member function
2444 - added the size consistency check to Notify
2445
2446 * mfileio/MWriteRootFile.cc:
2447 - mini changes to Print-output
2448
2449 * mfilter/MF.[h,cc]:
2450 - added Print-function
2451
2452 * mraw/MRawEvtPixelIter.h:
2453 - removed wrong EOL characters
2454
2455 * macros/multidimdist2.C:
2456 - made variable names unique
2457
2458 * macros/star.C:
2459 - added sigmabar
2460
2461 * macros/status.C:
2462 - added sigmabar
2463 - added MHSigmaTheta
2464
2465 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
2466 - added MFiltercutsCalc
2467
2468 * manalysis/MFiltercutsCalc.[h,cc]:
2469 - added
2470
2471
2472 2003/05/19: Thomas Bretz
2473
2474 * mgui/MCamDisplay.cc:
2475 - removed an unused variable.
2476
2477 * Makefile.rules:
2478 - fixed Mr.Proper
2479
2480 * mbase/MEvtLoop.cc, mbase/MParList.cc, mbase/MTaskList.cc,
2481 mfileio/MReadTree.cc, mfileio/MWriteRootFile.cc:
2482 - use new manipulator 'underline'
2483
2484 * mbase/MLog.cc:
2485 - added new underlining
2486 - added blue color for debugging
2487
2488 * mbase/MLogManip.[h,cc]:
2489 - added underline
2490 - added dbg and increased all other debug(n) levels by one
2491
2492 * mbase/MParContainer.h:
2493 - made fDisplay persistent (workaround for a obsolete warning in
2494 root 3.02/07)
2495
2496 * mfileio/MWriteRootFile.[h,cc]:
2497 - fixed a bug introduced when implementing UPDATE mode,
2498 kIsNewTree set for TTree
2499
2500
2501
2502 2003/05/16: Abelardo Moralejo
2503
2504 * mmontecarlo/MMcEnergyEst.[h,cc]
2505 - Added SetCoeff
2506
2507
2508
2509 2003/05/16: Thomas Bretz
2510
2511 * mfilter/MFEventSelector2.[h,cc]:
2512 - added
2513
2514 * mfilter/Makefile, mfilter/FilterLinkDef.h:
2515 - added MFEventSelector2
2516
2517 * mbase/MContinue.cc:
2518 - SetDisplay for filter
2519 - Set LogStream for filter
2520
2521 * mbase/MEvtLoop.cc:
2522 - don't use pointer to fTasklist in PostProcess if not initialized
2523 - do not execute Process if fTasklist is not initialized
2524
2525 * mbase/MTask.[h,cc]:
2526 - overwrite SetDisplay (set also display of attached filter
2527
2528 * mbase/MTaskList.cc:
2529 - minor changes
2530
2531 * mdata/MDataChain.[h,cc]:
2532 - implemented ParseDataMember to support constants
2533
2534 * mfileio/MCT1ReadPreProc.[h,cc]:
2535 - added fNumFile to support Rewind
2536 - added Rewind
2537
2538 * mfileio/MRead.[h,cc]:
2539 - new virtual function Rewind
2540
2541 * mfileio/MReadMarsFile.[h,cc]:
2542 - added Rewind
2543
2544 * mfileio/MReadTree.[h,cc]:
2545 - added Rewind
2546 - fixed a missing 'else' in AddFile
2547
2548 * mhist/MBinning.[h,cc]:
2549 - added SetEdges(TAxis&)
2550 - added SetEdges(TH1&, char)
2551
2552 * mhist/MFillH.[h,cc]:
2553 - added bit kDoNotDisplay
2554
2555 * mhist/MH.h:
2556 - added a comment
2557
2558 * mhist/MH3.[h,cc]:
2559 - implemented GetRule
2560 - implemented GetNbins
2561 - implemented FindFixBin
2562
2563 * mimage/MHHillasSrc.cc:
2564 - replaced gPad->cd(4) by savepad
2565
2566 * mmain/MStatusDisplay.[h,cc]:
2567 - fixed locked mode for loop-in-loop cases
2568
2569
2570
2571 2003/05/15: Wolfgang Wittek
2572
2573 * macros/CT1EgyEst.C
2574 - replace "energyest.root" by paramout
2575
2576
2577
2578 2003/05/14: Wolfgang Wittek
2579
2580 * macros/CT1env.rc
2581 - CT1env replaced by CT1env.rc
2582
2583 * mranforest/MRanForestCalc.cc
2584 - exchange arguments in
2585 FindCreateObj("MHadronness", fHadronnessName)
2586
2587
2588
2589 2003/05/13: Thomas Bretz
2590
2591 * mdata/MDataArray.[h,cc]:
2592 - addeed GetData and >>-operator to fill a TVector from the array
2593
2594 * manalysis/MMultiDimDistCalc.cc:
2595 - use new >>-operator from MDataArray
2596
2597 * mranforest/MRanForest.[h,cc]:
2598 - TVector& in CalcHadronness declared const
2599 - added a const qualifier to 'Float_t sum'
2600 - removed Reset() from a TIter declaration (done by the TIter
2601 constructor)
2602
2603 * mranforest/MRanForestCalc.cc:
2604 - fill TVector with new >>-operator of MDataArray
2605
2606 * mranforest/MRanTree.[h,cc]:
2607 - removed obsolete returns at the end of some functions
2608 - TVector& in TreeHad declared const
2609 - changed if to ?:-operator in TreeHad
2610 - TreeHad() calls TreeHad(const TVector &) now (code is not
2611 implemented twice)
2612
2613
2614
2615 2003/05/12: Abelardo Moralejo
2616
2617 * mhistmc/MHMcEnergyMigration.cc
2618 - Draw(): fixed axis label in one plot.
2619
2620
2621
2622 2003/05/12: Thomas Bretz
2623
2624 * mmain/MStatusDisplay.[h,cc]:
2625 - implemented UpdatePSHeader
2626
2627
2628
2629 2003/05/10: Thomas Bretz
2630
2631 * Makefile.rules:
2632 - implemented diff
2633
2634 * NEWS:
2635 - changed
2636
2637 * manalysis/MCT1SupercutsCalc.cc:
2638 - fixed variable names
2639
2640 * mbase/MParContainer.cc:
2641 - replaces IsA()->GetName() by ClassName()
2642
2643 * mbase/Makefile:
2644 - removed obsolete include paths
2645
2646 * mdata/MDataArray.[h,cc]:
2647 - new member function GetRule(int)
2648
2649 * mgui/MCamDisplay.[h,cc]:
2650 - implemented GetObjectInfo
2651
2652 * mhist/MH.[h,cc]:
2653 - implemented ProjectionX
2654 - implemented ProjectionY
2655 - implemented FindObjectInPad
2656
2657 * mhist/MHSigmaTheta.[h,cc]:
2658 - implemented Paint
2659
2660 * mmain/MStatusDisplay.[h,cc]:
2661 - implemented kFileCanvas
2662 - implemented kFileBrowser
2663
2664
2665
2666 2003/05/09: Abelardo Moralejo
2667
2668 * mhistmc/MHMcEnergyMigration.[h,cc]
2669 - Added histograms, changed Draw() to display them. Still
2670 provisional, many changes in the whole part of the energy
2671 estimator are needed.
2672
2673 * macros/CT1EEst.C, CT1EnergyEst.C
2674 - Removed
2675
2676 * macros/CT1EgyEst.C
2677 - Added example on how to use the energy estimation for CT1.
2678 Very provisional!
2679
2680
2681
2682 2003/05/09: Wolfgang Wittek
2683
2684 * manalysis/MCT1SupercutsCalc.cc
2685 - add SetReadyToSave()
2686
2687
2688
2689 2003/05/09: Thomas Bretz
2690
2691 * mbase/MLog.cc:
2692 - do not underline if eNoColors is set
2693 - fixed abug in Output() (last character missing when flushed)
2694 - same when flushing to the GUI
2695
2696 * mbase/MLogManip.cc:
2697 - removed an obsolete comment
2698
2699 * mfileio/MReadTree.cc:
2700 - print warning in case no files could be added to chain
2701
2702 * mfilter/MFDataChain.h:
2703 - fixed code layout
2704
2705 * mimage/MHHillasSrc.h:
2706 - added Paint
2707
2708 * mimage/MHillasCalc.[h,cc]:
2709 - changed default title
2710
2711 * Makefile:
2712 - added rule 'diff'
2713
2714 * mhist/MHMatrix.cc:
2715 - compressed some debug outputs
2716
2717 * manalysis/MSigmabar.[h,cc]:
2718 - deleted the fCalcPixNum variable (not used).
2719
2720 * macros/star.C, macros/starct1.C:
2721 - updated
2722
2723 * mhist/MBinning.cc:
2724 - fixed SetBinningCos
2725
2726 * mhist/MHSigmaTheta.[h,cc]:
2727 - in setting of binnings changes npix+1 to npix
2728 (SetEdges takes the number of _bins_ as argument)
2729 - fixed titles (LaTeX style)
2730 - added default binning (may have to be changed for Magic)
2731 - removed obsolete destructor
2732 - removed default canvas size of 900x900
2733 - temporarily removed SetLogy() for first pad. I'm searching
2734 for a solution to put it in again when using the status display
2735
2736
2737
2738 2003/05/08: Thomas Bretz
2739
2740 * Makefile.rules:
2741 - fixed the rmhtml bug
2742
2743 * macros/collarea.C:
2744 - changed to use MStatusDisplay
2745
2746 * manalysis/MCT1SupercutsCalc.cc:
2747 - fixed a typo
2748
2749 * mbase/MEvtLoop.[h,cc], mbase/MTaskList.[h,cc]:
2750 - added FindTask member functions
2751
2752 * mbase/MLog.cc:
2753 - do not crop logging to GUI to 1000 lines anymore
2754
2755 * mdata/MDataChain.cc:
2756 - use GetRule() in the constructor instead of Print()
2757
2758 * mdata/MDataElement.cc, mfilter/MFDataChain.cc:
2759 - do not return str+"something"
2760
2761 * mhist/MH.[h,cc]:
2762 - fixed a bug in DrawCopy(TH1*,TH1*)
2763 - overwrite Clone function and do not add TH1 to gDirectory
2764 when cloning MH classes
2765
2766 * mimage/MHHillas.cc, mimage/MHHillasSrc.cc:
2767 - adde a sanity check to Fill
2768
2769 * mimage/MHHillasSrc.cc:
2770 - do not set the log scale before we have entries in the histogram
2771
2772
2773
2774 2003/05/08: Abelardo Moralejo
2775
2776 * mimage/MImgCleanStd.cc
2777 - extended comment on standard cleaning. Removed an obsolete
2778 comment.
2779
2780 * mhistmc/MHMcCollectionAreaCalc.cc
2781 - Changed binning of histograms, so that the collection area
2782 can be calculated also between 5 and 10 GeV (for pulsar studies)
2783
2784
2785
2786 2003/05/07: Nadia Tonello
2787
2788 * manalysis/MCT1PointingCorrCalc.[h,cc]
2789 - deleted the fMcEvt variable (not used).
2790
2791
2792 2003/05/07: Thomas Bretz
2793
2794 * mmain/Makefile, mmain/MainLinkDef.h:
2795 - added MSearch
2796
2797 * mmain/MSearch.[h,cc]:
2798 - added
2799
2800 * mmmain/MStatusDisplay.[h,cc]:
2801 - implemented Search
2802
2803 * mhist/MHSigmaTheta.cc:
2804 - removed borders around the pads (Draw)
2805
2806 * mfileio/MCT1ReadPreProc.cc:
2807 - do not output the run number twice!
2808
2809 * mimage/MHillasExt.[h,cc]:
2810 - changed ClassDef to 2
2811 - updated comments
2812
2813 * mimage/MNewImagePar.cc:
2814 - updated comments
2815
2816
2817
2818 2003/05/07: Abelardo Moralejo
2819
2820 * mranforest/Makefile
2821 - fixed typo.
2822
2823
2824
2825 2003/05/06: Abelardo Moralejo
2826
2827 * mhistmc/MHMcCollectionArea.cc
2828 - Added: delete &pally
2829
2830 * mfilter/MFCT1SelFinal.cc
2831 - changed FindObject("MGeomCam") to
2832 FindCreateObj("MGeomCamCT1","MGeomCam")
2833
2834 * mhistmc/MHMcCollectionArea.cc
2835 - in procedure Calc(TH2D &hsel, TH2D &hall) : changed the
2836 calculation of maximum impact parameter. Now it looks for
2837 the non-empty bin of histogram "hall" with highest impact
2838 parameter. The code could not work as it was before, but this
2839 had influence only when running over camera files containing all
2840 events, including non-triggers (while we usually run over files
2841 containing only triggers).
2842
2843
2844
2845 2003/05/06: Thomas Bretz
2846
2847 * manalysis/MRan*, mhist/MHRan*:
2848 - moved to new directory mranforest
2849
2850 * mranforest, mranforest/Makefile, mranforest/RanForestLinkDef.h,
2851 mranforest/RanForestIncl.h:
2852 - added
2853
2854 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2855 - removed MRan*
2856
2857 * mhist/Makefile, mhist/HistLinkDef.h:
2858 - removed MHRan*
2859
2860 * Makefile:
2861 - mranforest added
2862
2863 * mbase/MLog.cc:
2864 - sanity check in MLog::Output (len>0)
2865
2866 * mimage/MImgCleanStd.cc:
2867 - adapted path to html images
2868
2869 * htmldoc/*:
2870 - moved to new path htmldoc/images
2871
2872 * Makefile.rules:
2873 - corrected rule rmhtmldoc
2874
2875 * NEWS:
2876 - updated
2877
2878 * macros/dohtml.C, macros/rootlogon.C:
2879 - added mranforest
2880
2881 * mbase/MEvtLoop.cc:
2882 - fixed a typo
2883
2884 * mhist/HistLinkDef.h
2885
2886
2887
2888 2003/05/05: Nadia Tonello
2889
2890 * mfilter/MFCT1SelStandard.cc
2891 - correct the default name of fImgParName
2892 ("MNewImgPar") => ("MNewImagePar")
2893
2894
2895
2896 2003/05/05: Thomas Bretz
2897
2898 * mbase/MEvtLoop.cc:
2899 - underline Instatiation Message
2900 - small change to a warning output
2901
2902 * mbase/MLog.[h,cc]:
2903 - added stuff for underlining
2904 - changed from TGListBox to TGViewText
2905
2906 * mmain/MStatusDisplay.[h,cc]:
2907 - changed fLogBox from TGListBox to TGViewText
2908 - added menu 'Log'
2909 - changed division of status line to 'Goldener Schnitt'
2910
2911 * mhist/MHHadronness.cc, mhist/MHCerPhotEvt.cc, mhist/MHStarMap.cc,
2912 mimage/MHHillas.cc:
2913 - fixed 'redifinion of default argument'
2914
2915 * mbase/Makefile, mfileio/Makefile:
2916 - moved first source file to second position to get rid of crashes
2917 of rootcint on our Alpha
2918
2919 * mimage/MNewImagePar.cc:
2920 - removed maxpixid (not used)
2921
2922 * manalysis/MRanTree.cc:
2923 - replaced ostream.h by iostream.h
2924
2925 * manalysis/MPadding.h:
2926 - added a missing const qualifier in the definition of 'Padding'
2927
2928 * mmontecarlo/MMcEnergyEst.cc:
2929 - added math.h
2930
2931 * Makefile, mbase/Makefile, mmain/Makefile:
2932 - changed order (linking on our Alpha failed)
2933
2934 * mbase/MLog.h:
2935 - don't include iostream.h if __CINT__ (crashes rootcint on our
2936 alpha)
2937
2938
2939
2940 2003/05/05: Wolfgang Wittek
2941
2942 * manalysis/MPadSChweizer.cc
2943 - delete histograms in destructor
2944
2945
2946
2947 2003/05/02: Thomas Bretz
2948
2949 * Makefile.conf.general, Makefile.conf.linux, Makefile.conf.linux-gnu,
2950 Makefile.conf.osf1, Makefile.conf.osf5.1:
2951 - added MARSDEFINES, MARSFLAGS, MARSLIBS
2952
2953 * mars.cc:
2954 - replaces HAVE_LOGO by HAVE_XPM
2955
2956 * NEWS:
2957 - updated
2958
2959 * mbase/MLogo.cc:
2960 - replaces marslogo_neu by marslogo
2961 - encapsulated in HAVE_XPM
2962
2963 * mbase/Makefile:
2964 - added MLogo.cc
2965
2966 * mmain/MGMenu.cc:
2967 - fixed the 'KeyAutoRepeat' bug
2968
2969 * manalysis/MCerPhotEvt.[h,cc:
2970 - added RemoveUnusedPixels
2971
2972 * manalysis/MSigmabar.cc:
2973 - small simplification for compiler optimization
2974
2975 * mbase/MEvtLoop.cc:
2976 - changed output to fDisplay
2977 - changed behaviour in case of a failed PostProcess
2978
2979 * mbase/MLog.[h,cc]:
2980 - added flushing and tab conversion to GUI
2981 - added color support
2982
2983 * mbase/MParList.cc:
2984 - replaced some *Iter by MIter
2985
2986 * mbase/MTask.cc, mbase/MTaskList.cc:
2987 - added output to fDisplay
2988 - replaced some *Iter by MIter
2989
2990 * mhist/MH.cc:
2991 - don't add clones to directory
2992
2993 * mimage/MImgCleanStd.[h,cc]:
2994 - replaced divisiond by multiplications
2995 - fixed StreamePrimitive
2996 - do not allow 0 rings
2997
2998 * mmain/MStatusDisplay.[h,cc]:
2999 - added writing gif
3000 - added writing C
3001 - changes SaveAs to non-const (added output to status lines)
3002 - replaced TGLabels by TGStatusBar
3003
3004
3005
3006 2003/04/30: Wolfgang Wittek
3007
3008 * manalysis/MPadSchweizer.[h,cc]
3009 - reorder histograms
3010
3011 * mhist/MHSigmaTheta.[h,cc]
3012 - remove last 3 plots (otherwise get segmentation violation ???)
3013
3014 * mimage/MHNewImagePar.[h,cc]
3015 - change range of leakage to be plotted
3016 (want to see also leakage=0)
3017
3018
3019
3020 2003/04/30: Nadia Tonello
3021
3022 * manalysis/MCerPhotPix.[h,cc]:
3023 - deleted Bool_t fIsUsed and substituted with
3024 the condition: fRing>0 in the functions
3025 Bool_t IsPixelUsed() const{return fRing>0;}
3026 void SetPixelUsed() { fRing = 1;}
3027 void SetPixelUnused(){ fRing = 0;}
3028
3029
3030
3031 2003/04/29: Wolfgang Wittek
3032
3033 * mhist/MHSigmaTheta.[h,cc]:
3034 - ClassDef( ,0) -> ClassDef( , 1)
3035 - minor corrections in Draw()
3036
3037
3038
3039 2003/04/29: Thomas Bretz
3040
3041 * mfilter/MFCT1SelBasic.[h,cc], mfilter/MFCT1SelFinal.[h,cc],
3042 mfilter/MFCT1SelStandard.[h,cc]:
3043 - reordered includes
3044 - removed MHillas from constructor (if present)
3045 - added corresponding Setter-methods
3046 - added many const qualifiers
3047 - removed some obsolete data members
3048 - made some member functions private
3049 - only store fMm2Deg, not the pointer to MGeomCam
3050 - don't use the CT1 camera build in... (to be discussed)
3051 - fixed MHillas, MHillasExt and MNewImagePar stuff
3052
3053 * mimage/MImgCleanStd.[h,cc]:
3054 - added Nadia to the list of authors
3055 - added pngs for the formulars
3056
3057 * htmldoc, htmldoc/MImgCleanStd-f1.png, htmldoc/MImgCleanStd-f2.png:
3058 - added
3059
3060 * manalysis/MCT1SupercutsCalc.[h,cc]:
3061 - changed the default "MHillasExt" to "MHillas"
3062
3063 * mbase/MEvtLoop.cc:
3064 - fixed a bug in ProcessGuiEvents
3065
3066 * mhist/MH*.[h,cc], mhistmc/MH*.[h,cc], mimage/MH*.[h,cc]:
3067 - changed "Double_t w" in Fill to "const Stat_t w"
3068 - added weight in some classes to TH::Fill
3069
3070 * mbase/MHtml.[h,cc]:
3071 - removed
3072
3073 * mfileio/MCT1ReadPreProc.cc:
3074 - removed the dependance on a MBinning in Theta.
3075
3076
3077
3078 2003/04/29: Abelardo Moralejo
3079
3080 * mmontecarlo/MMcCollectionareaCalc.[h,cc]
3081 - Now the energy limits and spectral slope used in Corsika are
3082 read from the run header. Warning: impact parameter is still
3083 fixed (I changed it from 400 m to 300 m, our present MC
3084 production default). Added warning message about this.
3085 Collection areas calculated up to now with the new MC library
3086 are overestimated by a ~77% ! This class will be removed in
3087 the future and replaced by MFillH.
3088
3089 * mhistmc/MHMcCollectionArea.[h,cc]
3090 - Adapted to the change of MMcCollectionAreaCalc. Added arguments
3091 to CalcEfficiency.
3092
3093
3094
3095 2003/04/28: Nadia Tonello
3096
3097 * mimage/MImgCleanStd.[h,cc]
3098 - added the option kDemocratic using sigmabar of the inner pixels
3099 - added the option to select the number of rings of pixels
3100 to analyze around the core pixels
3101 - added documentation
3102
3103 * manalysis/MCerPhotPix.[h,cc]
3104 - added fRing and Get-Set functions
3105
3106
3107
3108 2003/04/28: Oscar Blanch
3109
3110 * mgeom/MGeomCamECO1000.[h,cc]
3111 - New files for ECO 1000 camera geometry.
3112
3113 * mgeom/GeomLinkDef.h
3114 - Added class MGeomCamECO1000
3115
3116 * mgeom/Makefile
3117 - Added class MGeomCamECO1000
3118
3119
3120
3121 2003/04/28: Abelardo Moralejo
3122
3123 * mmontecarlo/MMcEnergyEst.[h,cc]
3124 - Lots of fixes after Thomas suggestions. Now cuts are not part
3125 of the class, but introduced via a new MFilter* member. Changed
3126 all Char_t* for TString. Changed own TMiniut pointer by gMinuit.
3127 Removed couts and used fLog instead. Function fcn is no longer
3128 declared external.
3129
3130
3131
3132 2003/04/28: Thomas Bretz
3133
3134 * NEWS:
3135 - updated
3136
3137 * manalysis/MBlindPixelCalc.cc:
3138 - use Are of pixles while interpolating
3139
3140 * mbase/MEvtLoop.cc:
3141 - output speed in Evts/s to fDisplay
3142
3143 * mbase/MGGroupFrame.h:
3144 - fixed a typo
3145
3146 * mbase/MTask.[h,cc]:
3147 - Added OverwritesProcess
3148
3149 * mbase/MTaskList.[h,cc]:
3150 - removed CheckClassForProcess
3151 - replaced by MTask::OverwritesProcess
3152
3153 * mhist/MFillH.cc:
3154 - only draw something if the class overwrites the Draw function
3155
3156 * mhist/MH.[h,cc]:
3157 - added OverwritesDraw
3158 - added a higher maximum, lower minimum to Draw(TH1, TH1)
3159 - changed default size
3160
3161 * mhist/MHMatrix.cc:
3162 - mini change
3163
3164 * mimage/MHHillas.[h,cc]:
3165 - removed fUsedPix
3166 - removed fCorePix
3167
3168 * mimage/MHHillasExt.[h,cc]:
3169 - removed fHConc
3170 - removed fHConc1
3171 - changed default name to MHillasExt
3172
3173 * mimage/MHNewImagePar.[h,cc]:
3174 - added fHistConc
3175 - added fHistConc1
3176 - added fHistUsedPix
3177 - added fHistCorePix
3178
3179 * mimage/MHillas.cc:
3180 - removed fNumCorePixels
3181 - removed fNumUsedPixels
3182 - made fCosDelta writable
3183 - made fSinDelta writable
3184 - made GetSinDelta() public
3185 - made GetCosDelta() public
3186
3187 * mimage/MHillasExt.[h,cc]:
3188 - removed fConc
3189 - removed fConc1
3190 - changed default name to MHillasExt
3191 - derives from MParContainer now instead of MHillas
3192
3193 * mimage/MNewImagePar.[h,cc]:
3194 - added fNumCorePixels
3195 - added fNumUsedPixels
3196 - added fConc
3197 - added fConc1
3198
3199 * mimage/MNewImageParCalc.[h,cc]:
3200 - removed
3201
3202 * mimage/MHillasCalc.[h,cc]:
3203 - changed so, that it can calc MHillas, MHillasExt and MNewImagePar
3204
3205 * mimage/MHillasSrc.cc:
3206 - sqrt(tand*tand+1) replaced by 1/CosDelta
3207
3208 * mmain/MStatusDisplay.[h,cc]:
3209 - added second argument to SetLogStream
3210
3211 * mhist/MHAlphaEnergyTheta.[h,cc], mhist/MHAlphaEnergyTime.[h,cc],
3212 mhist/MHCerPhotEvt.[h,cc], mhist/MHEffOnTime.[h,cc],
3213 mhist/MHEffOnTimeTheta.[h,cc], mhist/MHEffOnTimeTime.[h,cc],
3214 mhist/MHEnergyTheta.[h,cc], mhist/MHEnergyTime.[h,cc],
3215 mhist/MHFlux.[h,cc], mhist/MHMatrix.[h,cc],
3216 mhist/MHSigmaTheta.[h,cc], mhistmc/MHMcCollectionArea.[h,cc],
3217 mhistmc/MHMcDifRate.[h,cc], mhistmc/MHMcEfficiency.[h,cc],
3218 mhistmc/MHMcEfficiencyEnergy.[h,cc], mhistmc/MHMcEfficiencyImpact.[h,cc],
3219 mhistmc/MHMcEnergy.[h,cc], mhistmc/MHMcEnergyImpact.[h,cc],
3220 mhistmc/MHMcEnergyMigration.[h,cc], mhistmc/MHMcRate.[h,cc]:
3221 - removed DrawClone
3222 - fixed Draw
3223
3224 * macros/MagicHillas.C, macros/star.C:
3225 - removed MHillasExt (not necessary anymore)
3226 - added MNewImagePar
3227
3228 * macros/readCT1.C, macros/readMagic.C, meventdisp/MGCamDisplay.cc,
3229 mmain/MAnalysis.cc:
3230 - added MHillasExt to be displayed
3231 - added MNewImagePar to be displayed
3232
3233 * manalysis/MCT1SupercutsCalc.[h,cc]:
3234 - removed empty destructor
3235 - fixed output in PreProcess
3236 - changed MHillasExt to MHillas
3237
3238
3239
3240
3241
3242 2003/04/28: Wolfgang Wittek
3243
3244 * manalysis/MPadSchweizer.[h,cc]
3245 - extend documentation
3246 - remove histograms which are also made by MHSigmaTheta
3247 - minor modifications
3248
3249
3250
3251 2003/04/25: Thomas Bretz
3252
3253 * mfilter/MFEnergySlope.cc:
3254 - removed obsolete PostProcess
3255
3256 * mdatacheck/MGDisplayAdc.cc:
3257 - fixed a bug which caused nothing to beeing displayed if only
3258 the Hi gains where existing (Exists->HasHi)
3259
3260 * mhist/MH.cc:
3261 - small change to GetNewPad
3262
3263 * mhistmc/MHMcEnergyMigration.h:
3264 - fixed the includes
3265
3266 * mgui/MCamDisplay.cc:
3267 - changed autoscaling (max<1:max=1 --> max==min:max=min+1)
3268
3269 * manalysis/MBlindPixelCalc.cc:
3270 - interpolate: take pixel area into account
3271
3272 * mhist/MHSigmaTheta.h:
3273 - removed nonsense GetSigmaThetaByName(const TString name)
3274 - removed nonsense GetSigmaPixThetaByName(const TString name)
3275 - removed nonsense GetDiffPixThetaByName(const TString name)
3276
3277 * manalysis/MPadSchweizer.cc:
3278 - fixed naming
3279 - fixed usage of operators
3280 - added some const qualifiers
3281 - replaced 'int OK' by 'Bool_t ok'
3282 - fixed wrong usage floating point value 0
3283
3284 * mimage/MImgCleanStd.cc:
3285 - moved ratio to the other side of the condition (don't divide
3286 if it is not necessary)
3287
3288
3289
3290 2003/04/24: Abelardo Moralejo
3291
3292 * macros/rootlogon.C
3293 - added gInterpreter->AddIncludePath(dir+"mhistmc");
3294
3295
3296
3297 2003/04/24: Thomas Bretz
3298
3299 * macros/rootlogon.C:
3300 - added mimage
3301
3302 * macros/dohtml.C:
3303 - added mhistmc
3304 - added mimage
3305 - added status.C
3306
3307 * mfilter/MFCT1Supercuts.[h,cc]:
3308 - removed
3309
3310 * manalysis/MPadSchweizer.[h,cc]:
3311 - renamed arguments of SetHistograms to Mars style
3312 - removed default argument for SetHistograms (usage would result
3313 in a crash)
3314 - removed empty destructor
3315
3316 * mhistmc/MHMcTriggerLvl2.h:
3317 - removed the wrong f in GetHistf
3318
3319 * manalysis/MSigmabarParam.h:
3320 - added const qualifiers to getters
3321
3322 * mfileio/MWriteRootFile.[h,cc]:
3323 - fixed support for UPDATE
3324
3325 * mfilter/MFEnergySlope.cc:
3326 - cleaned
3327 - removed empty PostProcess
3328
3329 * mhist/MHCerPhotEvt.cc:
3330 - removed ratio from Fill
3331
3332 * mhist/MH.h:
3333 - fixed a bug in the overloading of DrawClone
3334
3335 * mimage/MHillasSrc.[h,cc], mimage/MHHillasSrc.[h,cc]:
3336 - like suggested by Wolfgang: removed Head-Tail
3337
3338 * mbase/MEvtLoop.cc:
3339 - fixed a bug in the progress bar update at the end of the loop
3340
3341
3342
3343 2003/04/24: Wolfgang Wittek
3344
3345 * mfilter/MFCT1SelFinal.cc
3346 - small correction in output
3347
3348 * mhistmc/MHMcCT1CollectionArea.cc
3349 - plot all 3 histograms in DrawClone()
3350
3351 * manalysis/MPadSchweizer.[h,cc]
3352 - cleanup as proposed by Thomas
3353 - new member function SetHistograms() to set the pointers to the
3354 histograms to be used in the padding
3355
3356
3357
3358 2003/04/24: Antonio Stamerra
3359
3360 * mhistmc/MHMcTriggerLvl2.[h,cc]
3361 - renamed some variable (hf->fHist)
3362 - added fHist*Norm and fFNorm in the destructor
3363
3364 * manalysis/MMcTriggerLvl2.[h,cc]
3365 - added CalcCompactPixel() public method
3366 - implemented CalcPseudoSize method (still under construction...)
3367 - added inline method SetNewCamera(), used in the costructor
3368 - renamed global variables pixels_in_cell->gsPixelsInCell
3369 and pixels_in_lut->gsPixelsInLut
3370 - added destructor
3371
3372
3373
3374 2003/04/23: Thomas Bretz
3375
3376 * mhist/MHCerPhotEvt.[h,cc]:
3377 - updated dox
3378
3379 * manalysis/MCT1SupercutsCalc.h, manalysis/MPadSchweizer.h:
3380 - ClassDef -> 0
3381
3382 * NEWS:
3383 - updated
3384
3385 * mfileio/MWriteRootFile.[hcc]:
3386 - fixed the missing function of UPDATE files
3387
3388 * mhist/MFillH.[h,cc]:
3389 - implemented fWeight
3390 - adapted StreamPrimitive
3391 - changed fCanvas to //!
3392 - changed class version umber from 1 to 2
3393
3394 * mhist/MH.[h,cc], mhist/MHAlphaEnergyTheta.[h,cc],
3395 mhist/MHAlphaEnergyTime.[h,cc], mhist/MHArray.[h,cc],
3396 mhist/MHBlindPixels.[h,cc], mhist/MHCompProb.[h,cc],
3397 mhist/MHEffOnTime.[h,cc], mhist/MHEffOnTimeTheta.[h,cc],
3398 mhist/MHEffOnTimeTime.[h,cc], mhist/MHEnergyTheta.[h,cc],
3399 mhist/MHFadcCam.[h,cc], mhist/MHFlux.[h,cc],
3400 mhist/MHGamma.[h,cc], mhist/MHHadronness.[h,cc],
3401 mhist/MHMatrix.[h,cc], mhist/MHRanForest.[h,cc],
3402 mhist/MHRanForestGini.[h,cc], mhist/MHSigmaPixel.[h,cc],
3403 mhist/MHSigmaTheta.[h,cc], mhist/MHSigmabarTheta.[h,cc],
3404 mhist/MHStarMap.[h,cc], mhist/MHThetabarTheta.[h,cc],
3405 mhist/MHThetabarTime.[h,cc], mhist/MHTimeDiffTheta.[h,cc],
3406 mhist/MHTimeDiffTime.[h,cc], mhistmc/MHMcCT1CollectionArea.[h,cc],
3407 mhistmc/MHMcEnergyImpact.[h,cc], mhistmc/MHMcEnergyMigration.[h,cc]
3408 mhistmc/MHMcTriggerLvl2.[h,cc], mimage/MHHillas.[h,cc],
3409 mimage/MHHillasExt.[h,cc], mimage/MHHillasSrc.[h,cc],
3410 mimage/MHNewImagePar.[h,cc]:
3411 - added second (weight) argument to Fill
3412 - in some headers: removed obvious virtual
3413 - removed some dummy Fill function (not necessary anymore)
3414
3415
3416
3417 2003/04/23: Abelardo Moralejo
3418
3419 * mhistmc/MHMcCT1CollectionArea.[h,cc]
3420 - Now the class inherits from MH instead of directly from
3421 MParContainer. Implemented SetupFill, so that the binning
3422 definitions are read from the parlist.
3423
3424 * mmontecarlo/MMcCT1CollectionAreaCalc.[h,cc]
3425 - Removed. This class was superfluous, since the same job
3426 can be done using MFillH.
3427
3428 * mmontecarlo/Makefile, MontecarloLinkDef.h
3429 - removed class MMcCT1CollectionAreaCalc.
3430
3431 * macros/CT1collarea.C
3432 - adapted to changes above.
3433
3434 * mmc/MMcRunHeader.[hxx,cxx], mmc/MMCEvt.[hxx,cxx]
3435 - added comment in class description about the definition of
3436 the azimuth angle phi in the MC classes.
3437
3438
3439 2003/04/23: Antonio Stamerra
3440
3441 * mfilter/MFEnergySlope.[h,cc]
3442 - added new filter class to select events according to a given
3443 energy slope
3444
3445 * mfilter/Makefile, mfilter/FilterLinkDef.h
3446 - modified accordingly (added MFEnergySlope)
3447
3448 * manalysis/MMcTriggerLvl2Calc.cc
3449 - removed call to the MHMcTriggerLvl2->Fill() in Process()
3450
3451 * macros/triglvl2.C
3452 - added example of the MFEnergySlope filter
3453 - added filling of histos from MHMcTriggerLvl2
3454
3455
3456 2003/04/22: Abelardo Moralejo
3457
3458 * mmontecarlo/Makefile, MontecarloLinkDef.h
3459 - added MMcEnergyEst
3460 - added necessary include directories.
3461
3462 * mmontecarlo/MMcEnergyEst.cc
3463 - added filterhadrons.SetHadronnessName(fHadronnessName) to
3464 inform the filter about the name of the hadronness container
3465 to be used in the cuts.
3466
3467 * mfilter/MFCT1SelFinal.[h,cc]
3468 - added the possibility to cut also in Dist.
3469
3470
3471
3472 2003/04/22: Thomas Bretz
3473
3474 * mhist/MHHadronness.[h,cc]:
3475 - changed to support MStatusDisplay
3476
3477 * manalysis/MApplyPadding.[h,cc]:
3478 - removed
3479
3480 * mhist/MHMcCT1CollectionArea.[h,cc],
3481 mhist/MHMcCollectionArea.[h,cc], mhist/MHMcDifRate.[h,cc],
3482 mhist/MHMcEfficiency.[h,cc], mhist/MHMcEfficiencyEnergy.[h,cc],
3483 mhist/MHMcEnergy.[h,cc], mhist/MHMcEnergyImpact.[h,cc],
3484 mhist/MHMcEnergyMigration.[h,cc], mhist/MHMcIntRate.[h,cc],
3485 mhist/MHMcRate.[h,cc], mhist/MHMcTriggerLvl2.[h,cc]:
3486 - moved to new directory mhistmc
3487
3488 * mhistmc, mhistmc/Makefile, mhistmc/HistMcLinkDef.h:
3489 - new
3490
3491 * mhist/Makefile, mhist/HistLinkDef.h:
3492 - removed MHMc*
3493
3494 * mhistmc/MHMcCollectionArea.[h,cc]:
3495 - changed to fit requirements of MStatusDisplay
3496
3497 * Makefile:
3498 - added mhistmc
3499
3500 * mmain/MStatusDisplay.cc:
3501 - SetNoContextMenu(Bool_t flag) removed default argument
3502
3503 * mmain/Makefile:
3504 - added -I../mhistmc
3505
3506 * mhist/MWeight.[h,cc]:
3507 - added
3508
3509 * mhist/HistLinkDef.h:
3510 - added MWeight
3511
3512 * mhist/MH.h:
3513 - removed some debugging stuff
3514
3515
3516
3517 2003/04/22: Abelardo Moralejo
3518
3519 * mmontecarlo/MMcEnergyMigration.[h,cc]
3520 - Removed. It was not necessary, since the same job can be done
3521 with the already existing task MFillH.
3522
3523 * mhist/MHMcEnergyMigration.h
3524 - Changed ClassDef(MHMcEnergyMigration, 0)
3525 to ClassDef(MHMcEnergyMigration, 1) to allow writing the
3526 histograms to disk.
3527
3528
3529
3530 2003/04/21: Thomas Bretz
3531
3532 * manalysis/MBlindPixels.h:
3533 - IsBlind -> const
3534
3535 * mhist/HistLinkDef.h, mhist/Makefile:
3536 - added MHBlindPixels
3537
3538 * mhist/MH.[h,cc]:
3539 - changed the two DrawClone functions to one.
3540
3541 * mhist/MHHadronness.[h,cc]:
3542 - changed to fit the requirements of MStatusDisplay
3543
3544 * mhist/MHMatrix.cc:
3545 - SetDirectory(NULL) for all histograms created
3546
3547 * mhist/MHSigmaTheta.cc:
3548 - removed fNpix (is already in MHHillas)
3549 - removed fBlindId (--> MHBlindPixels)
3550
3551 * mhist/MHBlindPixels.[h,cc]:
3552 - new
3553
3554 * macros/plot.C:
3555 - Added MStatusDisplay support
3556
3557 * macros/status.C:
3558 - added MHNewImagePar
3559 - added MHHadronness
3560
3561 * manalysis/MBlindPixelCalc.cc:
3562 - updated class reference
3563
3564 * meventdisp/MGCamDisplay.[h,cc]:
3565 - fixed
3566
3567 * meventdisp/MGEvtDisplay.cc:
3568 - changed function adding the tab
3569
3570 * mgui/MCamDisplay.cc, mhist/MHCerPhotEvt.cc:
3571 - as a preliminary solution removed inner pad
3572
3573 * mhist/MFillH.cc:
3574 - make sure canvas is updated correctly in PostProcess
3575
3576 * mhist/MH.cc:
3577 - changed DrawCopy(TH1, TH1) and Draw(TH1, TH1) to fit the new needs
3578 display the range correctly and exchanged the two stat boxes
3579
3580 * mhist/MH3.cc:
3581 - fixed a bug in the default constructor
3582 - removed DrawClone
3583 - updated Draw function
3584
3585 * mhist/MHMcIntRate.[h,cc], mhist/MHRanForest.[h,cc],
3586 mhist/MHRanForestGini.[h,cc], mhist/MHSigmaPixel.[h,cc],
3587 mhist/MHSigmaTheta.[h,cc], mhist/MHSigmabarTheta.[h,cc],
3588 mhist/MHThetabarTheta.[h,cc], mhist/MHThetabarTime.[h,cc],
3589 mhist/MHTimeDiffTheta.[h,cc], mhist/MHTimeDiffTime.[h,cc],
3590 mimage/MHNewImagePar.[h,cc]:
3591 - removed old DrawClone
3592 - updated Draw function
3593 - replaced some titles by latex titles in some classes
3594
3595 * mimage/MHNewImagePar.[h,cc], mimage/MNewImagePar.[h,cc]:
3596 - removed scaling stuff
3597
3598 * mmain/MStatusDisplay.cc:
3599 - fixed some minor bugs
3600
3601
3602
3603 2003/04/20: Thomas Bretz
3604
3605 * Makefile:
3606 - exchanged mbase and mmain
3607
3608 * Makefile.conf.general:
3609 - added MARSVER
3610
3611 * mars.cc:
3612 - use MARSVER
3613
3614 * macros/readMagic.C:
3615 - updated to work with the new MH-stuff
3616
3617 * macros/status.C:
3618 - added
3619
3620 * manalysis/MBlindPixelCalc.cc, manalysis/MCerPhotCalc.cc,
3621 manalysis/MMcPedestalCopy.ccm, manalysis/MMcPedestalNSBAdd.cc,
3622 mfileio/MReadMarsFile.cc, mimage/MHillasCalc.cc,
3623 mimage/MImgCleanStd.cc:
3624 - changed def. title
3625
3626 * manalysis/MCT1PointingCorrCalc.h:
3627 - minor change
3628
3629 * manalysis/MCerPhotEvt.[h,cc]:
3630 - don't use unused pixels for calculation of min/max
3631 - added Scale member function
3632
3633 * manalysis/MCerPhotPix.h:
3634 - added Scale inline function
3635
3636 * mbase/MEvtLoop.[h,cc], mbase/MParContainer.[h,cc],
3637 mbase/MParList.[h,cc], mbase/MTaskList.[h,cc],
3638 mfileio/MReadMarsFile.cc, mhist/MFillH.[h,cc]:
3639 - implemented use of fDisplay
3640
3641 * mbase/MParContainer.h:
3642 - Don't display name and class name if it is the same (GetDescriptor)
3643
3644 * meventdisp/MGCamDisplay.[h,cc]:
3645 - made working with new MH-stuff
3646
3647 * mfileio/Makefile:
3648 - added -I../mmain
3649
3650 * mgeom/MGeomCam.[h,cc]:
3651 - added Clone function
3652
3653 * mgeom/MGeomCamCT1.cc, mgeom/MGeomCamMagic.cc:
3654 - commented out informal output at constructor
3655
3656 * mgui/MCamDisplay.[h,cc], mhist/MHStarMap.[h,cc],
3657 mimage/MHH*.[h,cc]:
3658 - changed to be more root oriented
3659
3660 * mgui/MHexagon.cc:
3661 - small changes
3662
3663 * mgui/Makefile:
3664 - added mhist
3665
3666 * mhist/MH.[h,cc]:
3667 - changed to be more root oriented
3668 - removed border
3669 - added DrawClone
3670 - GetNewPad
3671
3672 * mhist/MH3.cc:
3673 - removed some strange debug output
3674
3675 * mhist/MHCerPhotEvt.[h,cc]:
3676 - fixed some bug
3677 - made working with fDisplay
3678
3679 * mhist/Makefile:
3680 - added mmain
3681
3682 * mmain/MProgressBar.cc:
3683 - fixed a typo
3684
3685 * mmain/MStatusDisplay.[h,cc]:
3686 - new implementation
3687
3688 * mmain/MainLinkDef.h, mmain/Makefile:
3689 - added MStatusDisplay
3690 - added MGMenu
3691
3692 * mmain/MGMenu.[h,cc]:
3693 - added
3694
3695
3696
3697 2003/04/19: Abelardo Moralejo
3698
3699 * mmontecarlo/MMcEnergyEst.[h,cc]
3700 - Added. Contains routine for optimization of parameters of
3701 energy estimator.
3702
3703 * mmontecarlo/MMcEnergyMigration.[h,cc]
3704 - Added. Task to fill the energy migration matrix histograms
3705 contained in class MHMcEnergyMigration.
3706
3707
3708
3709 2003/04/17: Wolfgang Wittek
3710
3711 * mhist/MBinning.[h,cc]
3712 - replace for (int i=1; i<fEdges.GetSize()-1; i++)
3713 by for (int i=1; i<fEdges.GetSize(); i++)
3714
3715
3716
3717 2003/04/17: Wolfgang Wittek
3718
3719 * mfileio/MCT1ReadPreProc.cc
3720 - removed : if (theta > pi/2) continue;
3721 otherwise get inconsistency between no.of read events
3722 and no.of events after filter
3723 - write into MCerPhotEvt also pixels with zero no. of photons
3724
3725 * manalysis/MSigmabar.cc
3726 - correct wrong argument in call to memset
3727
3728 * manalysis/MPadSchweizer.cc
3729 - pad also pixels with zero no.of photons
3730
3731 * mhist/MHSigmaTheta.[h,cc]
3732 - add plot of no.of used pixels in MCerPhotEvt
3733 - add plot of Id of blind pixel
3734
3735
3736
3737 2003/04/14: Wolfgang Wittek
3738
3739 * manalysis/Makefile
3740 AnalysisLinkDef.h
3741 - MNewImagePar and MNewImageParCalc removed
3742
3743
3744
3745
3746 2003/04/12: Thomas Bretz
3747
3748 * mmain/MStatusDisplay.[h,cc]:
3749 - added
3750
3751 * manalysis/MPadding.[h,cc]:
3752 - simplified includes
3753 - changed some code (discussed with Robert)
3754 - fixed comments in header
3755 - changed ClassDef to 0
3756 - changed output to Mars style
3757 - fixed the memory leak of fHSigmabarMax
3758 - replaced TRandom by gRandom
3759 - removed usage of ->operator
3760
3761 * manalysis/MApplyPadding.[h,cc]:
3762 - replaced fRnd by gRandom
3763 - used MH::SetBinning
3764 - use telescope theta instead of theta
3765 - removed usage of ->operator
3766 - removed PostProcess
3767
3768 * manalysis/MPadSchweizer.cc:
3769 - fixed outputs in PreProcess
3770
3771 * manalysis/MSigmabar.[h,cc]:
3772 - added Reset member function
3773 - usage of memset
3774 - don't skip NumPhotons==0
3775 - changes discussed with Robert
3776 - small simplifications in loops
3777 - some fixes to the output
3778
3779 * manalysis/MSigmabarCalc.[h,cc]:
3780 - fixed outputs
3781 - some small simplifications
3782 - moved test for theta<120deg to MCT1ReadPreProc
3783
3784 * mfileio/MCT1ReadPreProc.[h,cc]:
3785 - skip events with theta>90deg
3786
3787 * mhist/MHSigmaPixel.[h,cc]:
3788 - fixes to the screen output
3789 - simplified usage of MBinning
3790
3791 * mhist/MHSigmaTheta.[h,cc]:
3792 - fixes to the screen output
3793 - simplified usage of MBinning
3794 - lower cased upper case local variables
3795 - removed DrawClone from Finalize (call from macro or executable)
3796
3797 * mhist/MHSigmabarTheta.[h,cc]:
3798 - fixes to the screen output
3799
3800 * mhist/MHStarMap.cc:
3801 - added some const qualifiers
3802
3803 * mhist/MHHadronnes.cc:
3804 - removed output of function name in Finalize because this
3805 information is already available on the screen.
3806
3807 * manalysis/MCT1PointingCorrCalc.h:
3808 - changed ClassDef to 0
3809 - removed empty PostProcess
3810 - fixes to the screen output in PreProcess
3811 - changed the order of the arguments in the constructor
3812 (name, title to the end)
3813
3814 * manalysis/MMultiDimDistCalc.cc:
3815 - added two const qualifiers
3816
3817 * mtemp/MObservatory.cc:
3818 - changed Magic1 coordinates to CT1 GPS.
3819
3820
3821
3822 2003/04/12: Wolfgang Wittek
3823
3824 * manalysis/MCT1PointingCorrCalc.[h,cc]
3825 - replaces MPointingCorr.[h,cc]
3826
3827 * manalysis/AnalysisLinkDef.h
3828 Makefile
3829
3830 * mbase/MFilter.h
3831 - set ClassDef(MFilter,1)
3832
3833 * mhist/MHHadronness.[h,cc]
3834 - improve warning printout
3835
3836 * mhist/MHMatrix.[h,cc]
3837 - type of 3rd argument of member function Fill
3838 changed from 'MF' to 'MFilter'
3839
3840
3841
3842 2003/04/11: Thomas Bretz
3843
3844 * macros/readMagic.C:
3845 - replaced GetEventNum by GetNumEntry
3846
3847 * manalysis/MCT1SupercutsCalc.cc:
3848 - fixed constructor (no default for fHadronnessName)
3849 - missing fHadronness->SetReadyToSave added
3850
3851 * manalysis/MMultiDimDistCalc.cc:
3852 - missing fHadronness->SetReadyToSave added
3853
3854 * manalysis/MParameters.cc:
3855 - changed title
3856
3857 * mfilter/MFCT1SelFinal.h:
3858 - set ClassDef to 0
3859
3860 * mimage/Makefile:
3861 - fixed a typo
3862
3863 * mraw/MRawEvtData.cc:
3864 - fixed Pixel assignment (i->ipos, fPosInArray++)
3865
3866
3867
3868 2003/04/10: Thomas Bretz
3869
3870 * mbase/MContinue.[h,cc]:
3871 - changed, so that also a filter given as a pointer is added to
3872 the tasklist automatically
3873 - added SetInverted
3874 - added IsInverted
3875
3876 * mbase/MTaskList.[h,cc]:
3877 - added RemoveFromList-function
3878
3879 * merpp.cc:
3880 - fixed typo
3881
3882 * mbase/MFilter.[h,cc]:
3883 - removed unnecessary base functions for Pre//PostProcess
3884 - added SetInverted
3885 - added IsInverted
3886
3887 * mbase/MTask.cc, mfileio/MCT1ReadPreProc.cc, mfileio/MReadTree.cc,
3888 mfilter/MF.cc, mfilter/MFilterList.cc
3889 - implemented IsConditionalTrue to support inverted filters
3890
3891 * mhist/MHHadronness.cc:
3892 - removed unnecessary check
3893
3894 * meventdisp/MGFadcDisp.cc:
3895 - remove all IDs in listbox
3896 - add entries sorted
3897
3898 * manalysis/MImgCleanStd.[h,cc], manalysis/MCameraSmooth.[h,cc],
3899 manalysis/MHillas.[h,cc], manalysis/MHillasSrc.[h,cc],
3900 manalysis/MHillasSrc.[h,cc], manalysis/MHillasCalc.[h,cc],
3901 manalysis/MNewImagePar.[h,cc], manalysis/MNewImageParCalc.[h,cc],
3902 mhist/MHHillas.[h,cc], mhist/MHHillasSrc.[h,cc],
3903 mhist/MHHillasExt.[h,cc], mhist/MHNewImagePar.[h,cc]:
3904 - moved to new directory mimage
3905
3906 * mimage/Makefile, mimage/ImageLinkDef.h, mimage/ImageIncl.h:
3907 - new
3908
3909 * Makefile:
3910 - added mimage
3911
3912 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
3913 mhist/HistLinkDef.h, mhist/Makefile:
3914 - removed moved files
3915
3916 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
3917 mhist/Makefile, mhist/AnalysisLinkDef.h, mmain/Makefile,
3918 mfilter/Makefile, meventdisp/Makefile, mgui/Makefile:
3919 - adapted
3920
3921
3922
3923 2003/04/09: Thomas Bretz
3924
3925 * manalysis/MCT1SupercutsCalc.[h,cc]:
3926 - moved last changes from MFCT1Supercuts to MCT1SupercutsCalc
3927
3928 * mhist/MHMcTriggerLvl2.[h,cc]:
3929 - fixed a warning
3930 - removed global variables
3931
3932
3933
3934 2003/04/09: Abelardo Moralejo
3935
3936 * manalysis/MHillasSrc.cc
3937 - changed comment about meaning of fCosDeltaAlpha
3938
3939
3940
3941 2003/04/08: Thomas Hengstebeck
3942
3943 * mhist/MHRanForest.cc, mhist/MHRanForestGini.cc
3944 - removed gStyle->SetOptStat(10), gStyle settings should be
3945 done by the user himself
3946
3947
3948
3949 2003/04/08: Abelardo Moralejo
3950
3951 * manalysis/MImgCleanStd.cc
3952 - Fixed "democratic" cleaning: now tail cut is proportional
3953 to pixel area instead of pixel radius as (erroneously) was
3954 before.
3955
3956 * NEWS
3957 - Changed comment on image cleaning.
3958
3959
3960
3961 2003/04/08: Thomas Bretz
3962
3963 * mhist/MHHadronness.cc:
3964 - no check for sump==0 and sumg==0 in loop necessary anymore
3965
3966 * Changelog, Changelog.02:
3967 - moved everything before 1/2003 to Changelog.02
3968
3969
3970
3971 2003/04/08: Wolfgang Wittek
3972
3973 * mfilter/MFCT1SelFinal.[h,cc]
3974 - add new member function SetHadronnessName()
3975
3976 * mhist/MHHadronness.[h,cc]
3977 - reset to SetOptStat(111100)
3978 - correct acceptance
3979
3980 * manalysis/MMultiDimDistCalc.[h,cc]
3981 - swap arguments in FindCreateObj
3982
3983
3984
3985 2003/04/08: Nicola Galante and Antonio Stamerra
3986
3987 * mhist/MHMcTriggerLvl2.[h,cc]
3988 - New class added (histograms for the MMcTriggerLvl2 class)
3989
3990 * mhist/Makefile
3991 - Added MHMcTrigggerLvl2 in SRCFILES
3992
3993 * manalysis/Makefile
3994 - Reintroduced MMcTriggerLvl2 and MMcTriggerLvl2Calc
3995 (they were removed!!)
3996
3997 * manalysis/MMcTriggerLvl2.h
3998 - 'const' added in inline functions Get****
3999
4000 * manalysis/MMcTriggerLvl2Calc.cc
4001 - added call to Fill method of MHMcTriggerLvl2
4002
4003 * macros/triglvl2.C
4004 - updated to have histograms with MHMcTriggerLvl2
4005
4006 * macros/dohtml.C
4007 - added triglvl2.C
4008
4009 * NEWS
4010 - new comment on L2T selection classes
4011
4012 2003/04/08: Wolfgang Wittek
4013
4014 * mfilter/Makefile
4015 FilterLinkDef.h
4016 - MFCT1Supercuts removed
4017
4018 * manalysis/MMultiDimDistCalc.h
4019 - set ClassDef(MMultiDimDistCalc,1)
4020
4021 * manalysis/MCT1SupercutsCalc.[h,cc]
4022 - new; replaces MFCT1Supercuts in mfilter
4023
4024 * manalysis/Makefile
4025 AnalysisLinkDef.h
4026
4027
4028
4029 2003/04/07: Thomas Bretz
4030
4031 * Makefile:
4032 - changed order
4033
4034 * manalysis/MMultiDimDistCalc.[h,cc]:
4035 - fixed default title
4036 - simplified code
4037 - added fHadronnessName
4038
4039 * manalysis/MRanForestCalc.[h,cc]:
4040 - added fHadronnessName
4041
4042 * mbase/MAGIC.h:
4043 - fixed a bug with rootcint
4044
4045 * meventdisp/MGFadcDisp.cc:
4046 - fixed a variable name
4047
4048 * mhist/MHHadronness.cc:
4049 - removed many old comments
4050 - simplified some code
4051 - uses argument in Fill now
4052
4053 * mmain/MMonteCarlo.cc:
4054 - some code simplification
4055 - fixed a warning
4056
4057 * macros/dohtml.C:
4058 - added testenv.C
4059
4060 * readraw.cc:
4061 - simplified
4062
4063 * mraw/MRawEvtData.cc:
4064 - fixed a bug in the draw function (the drawn pixel has not been the
4065 one with the given Id, but simply the i-th entry in the array)
4066
4067 * mfilter/MFCT1Supercuts.[h,cc]:
4068 - changed naming style of variables
4069 - changes array access
4070
4071 * mhist/MHFadcCam.[h,cc]:
4072 - added HasHi
4073 - added Exists
4074
4075 * mmain/MDataCheck.cc:
4076 - removed unimplemented buttons
4077
4078 * mdatacheck/MGDisplayAdc.[h,cc]:
4079 - tried to implement some unimplemented buttons
4080 - don't display non existing (empty) histograms in list
4081
4082
4083
4084 2003/04/04: Thomas Bretz
4085
4086 * mtools/MagicReversi.[h,cc]:
4087 - added support for Number of Players
4088 - added instructions
4089 - added support for Esc key
4090
4091 * mbase/MAGIC.h:
4092 - added version check to MAGIC.h
4093
4094
4095
4096 2003/04/04: Wolfgang Wittek
4097
4098 * mfilter/Makefile
4099 /FilterLinkDef.h
4100 - added MFCT1SelBasic, MFCT1SelStandard, MFCT1SelFinal,
4101 MFCT1Supercuts
4102
4103 * mfilter/MFCT1SelBasic.[h,cc]
4104 /MFCT1SelStandard.[h,cc]
4105 /MFCT1SelFinal.[h,cc]
4106 - new; they replace manalysis/MSelBasic.[h,cc]
4107 /MSelStandard.[h,cc]
4108 /MSelFinal.[h,cc]
4109
4110 * mfilter/MFCT1Supercuts.[h,cc]
4111 - new (supercuts from Daniel for CT1 Mkn421 2001 data)
4112
4113 * manalysis/MSelBasic.[h,cc]
4114 /MSelStandard.[h,cc]
4115 /MSelFinal.[h,cc]
4116 - deleted
4117
4118 * manalysis/Makefile
4119 AnalysisLinkDef.h
4120 - MSelBasic, MSelStandard, MSelFinal removed
4121
4122 * mfileio/MCT1ReadPreProc.[h,cc]
4123 - smeare theta only for MC events
4124
4125 // The following is not yet commited !!!!!!!!!!!!!
4126 * Mars/Makefile
4127 - in SUBDIRS put mfilter before manalysis
4128 (otherwise get link error)
4129
4130
4131
4132 2003/04/03: Abelardo Moralejo
4133
4134 * mmontecarlo/MMcTriggerRateCalc.cc:
4135 - added #include <math.h> for compilation on alpha (otherwise
4136 floor() is unkown)
4137
4138
4139
4140 2003/04/03: Thomas Bretz
4141
4142 * macros/testenv.C:
4143 - added
4144
4145 * mbase/MEvtLopp.cc, mbase/MParContainer.[h,cc],
4146 mbase/MParList.cc, mbase/MTaskList.cc:
4147 - changed the stuff for reading steering card - didn't really
4148 work like expected
4149
4150 * mhist/MHMatrix.cc, mfileio/MRead.cc, manalysis/MImgCleanStd.cc:
4151 - adapted ReadEnv
4152
4153 * mhist/MHMatrix.[h,cc]:
4154 - added ReadEnv
4155
4156 * mfileio/MCT1ReadPreProc.[h,cc]:
4157 - base SmearTheta on new FindLoEndge
4158 - simplified
4159
4160 * mhist/MBinning.h:
4161 - added FindBinLoEdge
4162 - added FindBinHiEdge
4163
4164 * mdata/MDataArray.[h,cc]:
4165 - added Clear
4166 - added Delete
4167
4168 * mbase/MEvtLoop.cc:
4169 - added output of the name
4170
4171 * mbase/MLog.[h,cc]:
4172 - don't use any pthread stuff if _REENTRANT is not defined
4173
4174 * mfileio/MRead.cc, mhist/MHMatrix.cc:
4175 - fixed waring for unreachable statement
4176
4177 * mhist/MHArray.cc:
4178 - fixed: redifinition of default argument
4179
4180
4181
4182
4183 2003/04/02: Abelardo Moralejo
4184
4185 * mmc/MMcTrigHeader.hxx
4186 - added threshold>0 check in the calculation of
4187 GetMeanThreshold
4188
4189 * mmontecarlo/MMcTriggerRateCalc.cc
4190 - The check of the MC spectral index value is now done by
4191 comparing integers instead of real numbers.
4192 - Found out with GREAT surprise that the graphical output
4193 has been completely commented out by someone(?) because it
4194 produced a memory leak. Also the function comment did not
4195 match the rules (my fault; is it correct now?) This commenting
4196 out has not been logged to this file, as far as I can see. This
4197 is rather unkind, I thought that when somebody finds some bug or
4198 messy code, he should either correct and commit it (and log the
4199 change here) and/or inform the author of the mistake to correct
4200 it. Please try to do so in the future instead of simply
4201 commenting out useful code!
4202
4203 * mdata/MDataValue.h
4204 - added default constructor (otherwise, no constant values
4205 can be used in the parameters used in the random forest
4206 separation)
4207
4208
4209
4210
4211 2003/04/02: Wolfgang Wittek
4212
4213 * mfileio/Makefile
4214 - mhist added, because MBinning is used in MCT1ReadPreproc
4215
4216 * mfileio/MCT1ReadPreProc.[h,cc]
4217 - new member function SmearTheta
4218 - store smeared Theta in MMcEvt::fTelescopeTheta
4219 store original Theta in MParameterD container "ThetaOrig"
4220 store fhourangle in MParameterD container "HourAngle"
4221
4222 * manalysis/MPointingCorr.[h,cc]
4223 - get hour angle from ParameterD container "HourAngle"
4224
4225 * manalysis/MSelBasic.[h,cc]
4226 MSelStandard.[h,cc]
4227 MSelFinal.[h,cc]
4228 - new member functions SetCuts()
4229
4230
4231
4232 2003/04/01: Abelardo Moralejo
4233
4234 * macros/CT1EnergyEst.C
4235 - added argument (maximum dist parameter), changed (reduced) output
4236 histograms, added writing to (and reading from) a file the energy
4237 estimation parameters and the histograms. Added comments.
4238
4239 * manalysis/MEnergyEstParam.[h,cc]
4240 - added member function GetCoeff. Changed comment.
4241
4242
4243
4244 2003/03/31: Thomas Bretz
4245
4246 * manalysis/MParameters.[h,cc]:
4247 - added
4248
4249 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
4250 - added MParameters, MParameterD, MParameterI
4251
4252 * mhist/MHArray.[h,cc]:
4253 - added default constructor
4254 - added Set-function
4255 - added Init function
4256 - moved code from constructors to Set and Init
4257
4258 * Makefile.conf.linux:
4259 - removed -fno-rtti to make it compatible with root 3.04.02
4260
4261 * NEWS:
4262 - changed
4263
4264 * manalysis/MImgCleanStd.[h,cc]:
4265 - added SetLvl1
4266 - added SetLvl2
4267 - added ReadEnv
4268
4269 * manalysis/MNewImagePar.[h,cc]:
4270 - removed unnecessary fHillas data member
4271 - removed unnecessary fSrcPos data member
4272 - removed unnecessary Set/GetSrcPos
4273
4274 * manalysis/MNewImageParCalc.[h,cc]:
4275 - removed unnecessary SetSrcPos
4276 - removed const-qualifier from fGeomCam, fCerPhotEvt
4277 (trouble with root 3.02/06)
4278
4279 * manalysis/MRanForest.cc:
4280 - changed cout-output
4281
4282 * manalysis/MSigmabar.cc:
4283 - changed Area to area (local variable)
4284
4285 * mbase/MEvtLoop.[h,cc]:
4286 - added evtloop name to constructor (default=Evtloop)
4287 - adapted StreamPrimitive
4288 - added ReadEnv
4289 - added WriteEnv
4290
4291 * mbase/MParContainer.[h,cc]:
4292 - removed TROOT.h
4293 - fixed const-qualifier for Copy-function for root>3.04.01
4294 - added ReadEnv
4295 - added WriteEnv
4296 - added IsEnvDefined
4297 - added GetEnvValue
4298
4299 * mbase/MParList.[h,cc], mbase/MTaskList.[h,cc]:
4300 - added ReadEnv
4301 - added WriteEnv
4302
4303 * mfileio/MCT1ReadAscii.[h,cc], mfileio/MCT1ReadPreProc.[h,cc]:
4304 - changed AddFile declaration to declaration in MRead
4305 - added return value to AddFile
4306
4307 * mfileio/MRead.[h,cc]:
4308 - added template for AddFile
4309 - added ReadEnv
4310
4311 * mgui/MHexagon.[h,cc]:
4312 - fixed const-qualifier for Copy-function for root>3.04.01
4313
4314 * mhist/MH.cc:
4315 - fixed the FindGoodLimit stuff for root> 3.04.01
4316
4317 * mhist/MHRanForest.[h,cc], mhist/MHRanForestGini.[h,cc]:
4318 - removed unnecessary casts
4319 - fixed a copilation error with root 3.04.01 (kFullDotlarge
4320 doesn't exist)
4321 - removed second Draw (one should not add something twice to
4322 the pad)
4323
4324 * mmontecarlo/MMcTriggerRateCalc.cc:
4325 - changes to the header
4326 - changes to the fLog stuff
4327 - added a cast to get rid of a warning
4328
4329 * mtools/Makefile, mtools/ToolsLinkDef.h:
4330 - added MagicReversi
4331
4332 * mtools/MagicRevers.[h,cc]:
4333 - added
4334
4335
4336
4337 2003/03/28: Thomas Bretz
4338
4339 * mbase/MParContainer.h:
4340 - added kEnableGraphicalOutput
4341 - added EnableGraphicalOutput
4342 - added IsGraphicalOutputEnabled
4343
4344 * mbase/MParList.h:
4345 - changed BIT(15) to BIT(17)
4346
4347 * mhist/MH.[h,cc]:
4348 - SetBinning(TH1*, TH1*) --> SetBinning(TH1*, const TH1*)
4349
4350 * mhist/MH3.h:
4351 - changed BIT(15) to BIT(17)
4352 - changed BIT(16) to BIT(18)
4353 - changed BIT(17) to BIT(19)
4354
4355 * mhist/MHMatrix.[h,cc]:
4356 - added DrawDefRefInfo
4357 - added CopyCrop
4358 - added GetRandomArrayI
4359 - changed DefRefMatrix to support the above
4360 - fixed a bug in DefRefMatrix (evtcount2 in the last loop
4361 instead of evtcount1)
4362 - Don't do anything in the finalization if the matrix has the correct
4363 dimensions
4364 - fixed comment of DefRefMatrix
4365 - changed number of first column from 1 to 0
4366 - changed BIT(16) to BIT(17)
4367
4368
4369
4370 2003/03/28: Wolfgang Wittek
4371
4372 * mhist/MHMatrix.cc
4373 - DefRefMatrix: if nmaxevts>fM.GetNrows() set
4374 nmaxevts = fM.GetNrows()
4375
4376 * manalysis/MSelBasic.[h,cc]
4377 - better output
4378
4379 * manalysis/MSelStandard.[h,cc]
4380 - different cut in DIST
4381
4382 * mfileio/MCT1ReadPreProc.[h,cc]
4383 - store hour angle in variable fOtherCphFraction
4384
4385 * manalysis/MHillasSrcCalc.h
4386 - replace in 'SetInput' fHillasName = hilname;
4387 by fHillasInput = hilname;
4388
4389 * manalysis/MNewImagePar.[h,cc]
4390 /MNewImageParCalc.[h,cc]
4391 - new; calculates new image parameters
4392
4393 * mhist/MHNewImagePar.[h,cc]
4394 - new; plots new image parameters
4395
4396 * manalysis/AnalysisLinkDef.h
4397 manalysis/Makefile
4398
4399 * mhist/HistLinkDef.h
4400 mhist/Makefile
4401
4402
4403
4404 2003/03/27: Thomas Hengstebeck
4405
4406 * manalysis/MRanForest.[h,cc]
4407 - allocation of TObjArray fForest moved to constructor.
4408 - use of gRandom
4409
4410 * manalysis/MRanTree.[h,cc]
4411 - use of gRandom
4412
4413 * macros/RanForest.C
4414 - gRandom initialized as TRandom3 object.
4415
4416
4417
4418 2003/03/25: Abelardo Moralejo
4419
4420 * macros/mergecamera.C
4421 - added warning to prevent dangerous misuse of this macro.
4422
4423
4424
4425 2003/03/25: Wolfgang Wittek
4426
4427 * mhist/MHStarMap.[h,cc]
4428 - use constant step size along the main axis of the ellipse
4429
4430 * manalysis/MPointingCorr.[h,cc]
4431 - new class for calculating the pointing correction
4432
4433 * mmc/MMcEvt.hxx
4434 - add GetOtherCphFraction()
4435
4436 * manalysis/Makefile
4437
4438 * manalysis/AnalysisLinkDef.h
4439
4440
4441
4442 2003/03/24: Abelardo Moralejo
4443
4444 * manalysis/MEnergyEstParam.cc
4445 - now energy estimation (for CT1) is done using the same model
4446 as in D.Krannich's thesis.
4447
4448
4449
4450 2003/03/24: Thomas Bretz
4451
4452 * manalysis/MHillasSrcCalc.[h,cc]:
4453 - removed last argument in constructor, replaced by SetInput
4454
4455 * mfilter/MFEventSelector.[h,cc]:
4456 - removed unnecessary last argument
4457
4458
4459
4460 2003/03/21: Thomas Hengstebeck
4461
4462 * manalysis/MRanTree.[h,cc]
4463 - new; parameter container to store a single random tree
4464
4465 * manalysis/MRanForest.[h,cc]
4466 - new; parameter container to store complete forest
4467
4468 * manalysis/MRanForestGrow.[h,cc]
4469 - new; task to grow trees (training)
4470
4471 * manalysis/MRanForestCalc.[h,cc]
4472 - new; task to calculate hadronness using random forest
4473
4474 * manalysis/MRanForestFill.[h,cc]
4475 - new; task to read in the trees of the random forest
4476
4477 * manalysis/Makefile, manalysis/HistLinkDef.h:
4478 - added MRanTree, MRanForest, MRanForestGrow, MRanForestCalc,
4479 MRanForestFill
4480
4481 * mhist/MHRanForest.[h,cc]
4482 - new; histogram showing variance of estimated hadronness as
4483 function of no. of combined trees
4484
4485 * mhist/MHRanForestGini.[h,cc]
4486 - new; histogram showing mean decrease in Gini-index as function
4487 of RF-input-parameters
4488
4489 * mhist/Makefile, mhist/HistLinkDef.h:
4490 - added MHRanForest, MHRanForestHillas
4491
4492 * macros/RanForest.C
4493 - new; g/h-separation by Random Forest-method
4494
4495 * macros/RanForest2.C
4496 - new; reading in saved random forest (using MRanForestFill)
4497
4498
4499
4500 2003/03/21: Abelardo Moralejo
4501
4502 * mhist/MHMatrix.[h,cc]:
4503 - Added third argument (a filter) to the second instantiation
4504 of the Fill procedure.
4505
4506 * macros/CT1EnergyEst.C:
4507 - Example of the parameter calculation and use of the energy
4508 estimation method for CT1.
4509
4510
4511
4512 2003/03/21: Thomas Bretz
4513
4514 * manalysis/MEnergyEstParam.[h,cc]
4515 - Added StopMapping and Print functions.
4516
4517 * manalysis/MSel*.h:
4518 - set default for HilName to MHillas
4519 - set default for HilNameSrc to MHillasSrc
4520
4521 * mfileio/MCT1ReadPreProc.[h,cc]:
4522 - do not flood the output with all events from the first run
4523 - output meaningfull text instead of variable names
4524 - removed a 'goto'!
4525 - changed savePedRMS according to the coding conventions to
4526 fPedRMS and the array of fixed size to a TArrayF
4527
4528 * mbase/MEvtLoop.cc:
4529 - added a events counter which counts the real number of
4530 processed events.
4531
4532 * mdata/MDataChain.[h,cc]:
4533 - implemented random numbers
4534 - implemented a conversion from degrees to radians and vice versa
4535
4536
4537
4538 2003/03/20: Thomas Bretz
4539
4540 * mfilter/MF.[h,cc]:
4541 - changed fFilter (already used in base class MTask) to fF
4542
4543
4544
4545 2003/03/19: Abelardo Moralejo
4546
4547 * macros/CT1collarea.C:
4548 - Added filter to cut in hadronness (now available in new version
4549 of root CT1 Monte Carlo file from Wolfgang).
4550
4551
4552
4553 2003/03/19: Robert Wagner
4554
4555 * mhist/MH3.cc:
4556 - changed MH3::New() such that constructor according to Thomas'
4557 previous changes is supported
4558
4559
4560
4561 2003/03/19: Thomas Bretz
4562
4563 * mhist/MH3.[h,cc]:
4564 - changed default constructor to support different dimensions
4565
4566 * mhist/MHArray.[h,cc]:
4567 - added AddHistogram
4568
4569 * meventdisp/MGEvtDisplay.cc, mfileio/MReadTree.[h,cc],
4570 meventdisp/MReadMarsFile.cc:
4571 - changed MReadTree::GetEventNum to MReadTree::GetNumEntry
4572
4573 * macros/estfit.C:
4574 - adopted to new MChisqEval
4575
4576 * mtools/MChisqEval.[h,cc]:
4577 - added
4578
4579 * mtools/Makefile, mtools/ToolsLinkDef.h:
4580 - added MChisqEval
4581
4582 * manalysis/MEnergyEstParam.[h,cc]:
4583 - slight changes
4584
4585 * mfileio/MCT1ReadPreProc.cc:
4586 - changed name to MRead
4587
4588
4589
4590 2003/03/18: Thomas Bretz
4591
4592 * mfileio/MReadTree.cc:
4593 - fixed a bug in the AddFile function
4594
4595 * mhist/MHMatrix.[h,cc]:
4596 - implemented a request of Th. Hengstebeck: Let DefRefMatrix
4597 return the 'unused' events
4598
4599
4600
4601 2003/03/18: Abelardo Moralejo
4602
4603 * mhist/MHMcCT1CollectionArea.[h,cc]
4604 - Added arguments in constructor: number of bins and ranges of the
4605 x-axis (energy) of the 2-d histograms. Changed type of binning:
4606 now the x-axis is log10(energy) and bins have equal width.
4607
4608 * macros/CT1collarea.C
4609 - The MHMcCT1CollectionArea object is now created and added to the
4610 parlist so that we can choose the binning. Changed the way
4611 histograms are written to the output file.
4612
4613
4614
4615 2003/03/13: Abelardo moralejo
4616
4617 * mhist/MHMcCT1CollectionArea.[h,cc]
4618 - Added for calculations of collection area for CT1.Contains three
4619 2-d histograms with axis energy vs theta angle: one histogram for
4620 all events, one for analyzed events, one for the collection area.
4621
4622 * mmontecarlo/MMcCT1CollectionAreaCalc.[h,cc]
4623 - Added for the same reason.
4624
4625 * macros/CT1collarea.C
4626 - Uses the above classes
4627
4628
4629
4630 2003/03/12: Abelardo Moralejo
4631
4632 * macros/mergecamera.C
4633 - Added. Merges several MC camera output files into a single file.
4634
4635
4636
4637 2003/03/08: Wolfgang Wittek
4638
4639 * macros/AnalyseCT1.C
4640 - for the CT1 data analysis
4641
4642 * mhist/MHMatrix.[h,cc]
4643 - let refcolumn start at 1 (not at 0)
4644
4645 * mhist/MHSigmaTheta.[h,cc]
4646 - Draw replaced by DrawCopy
4647 - add SetDirectory(NULL)
4648
4649 * manalysis/MSelBasic.[h,cc]
4650 MSelStandard.[h,cc]
4651 MSelFinal.[h,cc]
4652 - more detailed output for errors
4653 - bugs removed
4654
4655 * manalysis/MPadSchweizer.[h,cc]
4656 - add SetDirectory(NULL)
4657 - add fErrors
4658
4659 * mfilter/MFEventSelector.[h,cc]
4660 - add fErrors
4661
4662 * manalysis/MMultiDimDistCalc.[h,cc]
4663 - check division by zero
4664
4665 * mhist/MHHadronness.[h,cc]
4666 - check division by zero
4667 - normalize distributions of hadronness
4668
4669 * mfileio/MCT1ReadPreProc.[h,cc]
4670 - add event number (event.isecs_since_midday)
4671 - change definition of "fIsMcFile",
4672 because outpars.bmontecarlo is set wrongly sometimes
4673 - copy pedestalRMS for each event from the header information
4674 - check for the presence of a footer record even after reading
4675 a run header
4676
4677 * mmc/MMcEvt.[hxx,cxx]:
4678 - add GetEvtNumber()
4679
4680
4681
4682 2003/02/27: Abelardo Moralejo
4683
4684 * mmontecarlo/MMcTriggerRateCalc.cc:
4685 - Fixed: MMCTrigHeader could not be found in the case of camera
4686 files containing single trigger condition.
4687
4688 * macros/trigrate.C
4689 - no plot is made in the case of single trigger condition.
4690
4691 * mhist/MHMcRate.[h,cc]
4692 - Added member fTriggerCondNum to keep track of what trigger
4693 condition corresponds to each MHMcRate object, for the case of
4694 files with more than one condition (when running camera in
4695 trigger_loop mode). Added also Set and Get procedures for nre
4696 member.
4697
4698 * mmain/MMonteCarlo.cc
4699 - Fixed bug: matrix BgR was created with dimension "dim", a number
4700 which can be negative. Put "num" instead of "dim".
4701
4702
4703
4704 2003/02/25: Thomas Bretz
4705
4706 * mbase/MParContainer.cc:
4707 - small simplification for Cosy
4708
4709 * mbase/MLog.cc:
4710 - allow a maximum of 1000 lines in the gui
4711
4712
4713
4714 2003/02/25: Abelardo Moralejo
4715
4716 * mmontecarlo/MMcTriggerRateCalc.[h,cc]
4717 - Added axis labels in graphic output
4718 - Added Get function for rate histograms
4719
4720 * macros/trigrate.C
4721 - Added output file with rate histograms
4722
4723
4724
4725 2003/02/24: Abelardo Moralejo
4726
4727 * mmontecarlo/MMcTriggerRateCalc.[h,cc]
4728 - Fixed mistake when analysing camera files containing all
4729 events (including non-triggers): fShowers was always zero.
4730 - Added reading of MMcTrigHeaders in ReInit
4731 - Added procedure Draw for graphics output: rate versus
4732 discriminator threshold (useful for camera files with several
4733 trigger conditions).
4734
4735 * macros/trigrate.C
4736 - Added some explanations. Style improvements in function
4737 GetNSBEvents. Added call to MMcTriggerRateCalc::Draw
4738
4739 * mhist/MHMcRate.[h,cc]
4740 - Added GetTriggerRate() and GetTriggerRateError()
4741 - Added members fMultiplicity and fMeanThreshold, with their
4742 corresponding Set and Get functions
4743 - Added info on discriminator threshold and L1 trigger
4744 multiplicity on the printout.
4745
4746 * mmc/MMcTrigHeader.hxx
4747 - Added GetMultiplicity() and GetMeanThreshold()
4748
4749
4750 2003/02/22: Wolfgang Wittek
4751
4752 * mhist/Makefile
4753 - MHSigmaTheta added
4754
4755 * mhist/HistLinkDef.h
4756 - MHSigmaTheta added
4757
4758 * mhist/MHSigmaTheta.[h,cc]
4759 - type inconsistency removed
4760
4761
4762
4763 2003/02/21: Abelardo Moralejo
4764
4765 * mmontecarlo/MMcTriggerRateCalc.[h,cc]
4766 - adapted to new camera files, added warnings.
4767 - added ReInit procedure to read relevant info from from the
4768 run headers
4769
4770 * mhist/MHMcRate.[h,cc]
4771 - adapted accordingly. Added Set functions for several members.
4772
4773 * mmc/MMcCorsikaRunHeader.h
4774 - added Get functions for fELowLim, fEUppLim and fSlopeSpec.
4775
4776 * mmain/MMontecarlo.cc, macros/trigrate.C
4777 - adapted to changes above, changed MReadTree to MReadMarsFile to
4778 be able to read the run headers.
4779
4780
4781
4782 2003/02/21: Antonio Stamerra
4783
4784 * manalysis/MMcTriggerLvl2.[cc|h]
4785 - new data member fCompactNN needed to define a compact pixels
4786 - new inline functions SetCompactNN and GetCompactNN
4787 - Method Calc(int neighpix) -> Calc(). The value of neighpix
4788 is read from fCompactNN
4789
4790 * manalysis/MMcTriggerLvl2Calc.[cc|h]
4791 - Check on fCompactNN added in the PreProcess
4792
4793 * macros/triglvl2.C
4794 - Set of fCompactNN added
4795
4796
4797
4798 2003/02/21: Wolfgang Wittek
4799
4800 * manalysis/MSelFinal.[h,cc]
4801 - 'const' removed from pointers
4802
4803 * macros/AnalyseCT1.C
4804 - macro for the CT1 analysis (work in progress)
4805
4806
4807
4808 2003/02/20: Wolfgang Wittek
4809
4810 * manalysis/Makefile
4811 - add MSelFinal
4812
4813 * manalysis/AnalysisLinkDef.h
4814 - add MSelFinal
4815
4816 * manalysis/MPadSchweizer.[h,cc]
4817 - slight modification of padding procedure
4818
4819 * manalysis/MSigmabarCalc.[h,cc]
4820 - 'const' removed from pointers
4821
4822 * mhist/MHMatrix.[h,cc]
4823
4824 * mhist/MHSigmaTheta.[h,cc]
4825
4826
4827
4828 2003/02/20: Abelardo Moralejo
4829
4830 * mhist/MH.cc
4831 - Removed call to TGaxis::Optimize for compilation under root
4832 versions > 3.03, since in them this procedure is no longer
4833 existing. I did this to allow compilation under root_3.04,
4834 since earlier versions has a bug which prevents from
4835 plotting in the simple way some variables in a tree
4836 (example: fConc and others in the output of star.C). This
4837 is a temporal fix, I guess something will have to
4838 substitute the call to Optimize...
4839
4840
4841
4842 2003/02/20: Antonio Stamerra
4843
4844 * manalysis/MMcTriggerLvl2.[cc|h]
4845 - new; replaces MTrigLvl2.[cc|h]
4846 - new data members: fLutPseudoSize, fPseudoSize.
4847 - functions renamed:
4848 GetLutPseudoSize -> CalcBiggerLutPseudoSize
4849 GetBiggerFiredCell -> CalcBiggerFiredCell
4850 - new inline functions: GetLutPseudoSize(), GetPseudoSize().
4851 - new member functions:
4852 Calc(); CalcPseudoSize (not yet implemented)
4853 - Redefined Print() function as a TObject.
4854 - pixels_in_cell and pixels_in_lut redefined as static data
4855 members
4856
4857 * manalysis/MMcTriggerLvl2Calc.[cc|h]
4858 - new; replaces MTrigLvl2FillTask.[cc|h]
4859 - creation and filling of histograms commented
4860 - Process() calls the MMcTriggerLvl2::Calc()
4861
4862 * mfilter/MFTriggerLvl2.[h|cc]
4863 - new class to select events using MMcTriggerLvl2 data members.
4864
4865 * macros/triglvl2.C
4866 - added example to use the MFTriggerLvl2 filter.
4867
4868
4869
4870 2003/02/19: Wolfgang Wittek
4871
4872 * manalysis/MSelBasic.[h,cc]
4873 - new; evaluates the Basic Cuts (after the calibration)
4874
4875 * manalysis/MSelStandard.[h,cc]
4876 - new; evaluates the Standard Cuts
4877 (after the calculation of the image parameters and before the
4878 calculation of the hadronness)
4879
4880 * manalysis/MHillasCalc.[h,cc]
4881 - replace
4882 fHillas = (MHillas*)pList->FindCreateObj(fHilName);
4883 by
4884 fHillas = (MHillas*)pList->FindCreateObj("MHillas",
4885 fHilName);
4886 in order to allow MHillas containers with a name
4887 different from "MHillas"
4888
4889 * mhist/MHHillasExt.[h,cc]
4890 - replace
4891 TObject *obj = plist->FindObject("MHillas");
4892 by
4893 TObject *obj = plist->FindObject(fHilName, "MHillas");
4894 in order to allow MHillas containers with a name
4895 different from "MHillas"
4896 - add a 3rd argument in the constructor : fHilName
4897
4898 * manalysis/MHillasSrcCalc.[h,cc]
4899 - add new argument for constructor:
4900 the name of the MHillas input container
4901 in order to allow MHillas input containers with a name
4902 different from "MHillas"
4903
4904 * mhist/MHMatrix.[h,cc]
4905 - add member function DefRefMatrix();
4906 it defines the reference sample for the g/h separation;
4907 the selection of events for the reference sample can be made
4908 such that the distribution of a certain variable (for example
4909 Theta) agrees with a target distribution.
4910
4911 * mfilter/MFEventSelector.[h,cc]
4912 - add new argument for constructor:
4913 the name of the read object
4914 in order to allow also read objects which have a name
4915 different from
4916 "MRead"
4917
4918
4919
4920 2003/02/18: Thomas Bretz
4921
4922 * mfileio/MReadTree.cc:
4923 - added a fix for a bug in the workaround using wildcards
4924
4925
4926
4927 2003/02/14: Thomas Bretz
4928
4929 * mtemp/MObservatory.[h,cc]:
4930 - added
4931
4932
4933
4934 2003/02/10: Abelardo Moralejo
4935
4936 * Makefile.conf.osf1
4937 - Added -lpthread to compilation flags (otherwise linking fails
4938 in alfa)
4939
4940 * manalysis/Makefile, AnalysisLinkDef.h
4941 - Changed MApplyPadding for MPadding
4942
4943
4944
4945 2003/02/07: Wolfgang Wittek
4946
4947 * mhist/MHSigmaTheta.[h,cc]
4948 - new; 2D distribution : Theta, Sigmabar
4949 3D distribution : Theta, pixel number, Sigma
4950 3D distribution : Theta, pixel number, Sigma^2-Sigmabar^2
4951 these histograms may be used for the padding
4952
4953 * manalysis/MPadding.[h,cc]
4954 - new; replaces MApplyPadding.[h,cc]
4955 some errors removed
4956
4957 * manalysis/MSigmabar.[h,cc]
4958 - new definition of Sigmabar (only relevant for MAGIC)
4959 - add in member function 'Calc' a 3rd argument : 'const
4960 MCerPhotEvt &evt'
4961 - calculate sigmabar for 'MCerPhotEvt' pixels
4962 - in member function 'Calc' return Float_t fSigmabar instead of
4963 Bool_t
4964 - copies of objects replaced by references
4965
4966 * manalysis/MSigmabarCalc.[h,cc]
4967 - fSig->Calc(*fCam, *fPed) replaced by
4968 fSig->Calc(*fCam, *fPed, *fEvt)
4969 - change type of result of fSig->Calc from Bool_t to Float_t
4970
4971 * mfileio/MCT1ReadPreProc.cc
4972 - add in member function PreProcess() the initialization of the
4973 total number of pixels :
4974 fPedest->InitSize(iMAXNUMPIX);
4975 - remove statements that cannot be reached ('break' after
4976 'return')
4977
4978 * manalysis/MPadSchweizer.[h,cc]
4979 - alternative to MPadding
4980 - does the padding ala Thomas Schweizer
4981
4982
4983
4984 2003/02/06: Thomas Bretz
4985
4986 * mgeom/MGeomCam.[h,cc]:
4987 - fixed a warning (GetPixRatio(int) --> GetPixRatio(Uint)
4988
4989
4990
4991 2003/02/07: Antonio Stamerra
4992
4993 * manalysis/MTrigLvl2.[cc|h]
4994 - added new function
4995 MTrigLvl2::GetLutCompactPixel(int cell, int lut, int
4996 neighpix=2) which calculates the number of compact pixel
4997 in one lut
4998 - added new function GetLutPseudoSize(int neighpix=2) which
4999 calculates the lut-pseudosize
5000 - added static data member pixel_in_lut
5001 - merging of the PrintCell and PrintStatus functions in a single
5002 Print(int cell) function
5003 - Added comments using the standard layout
5004 - some small changes following Thomas comments (memset, *fLog)
5005
5006
5007
5008 2003/02/06: Thomas Bretz
5009
5010 * mbase/MLog.[h,cc]:
5011 - serialized the GUI output (problems with mutithreded prgs,
5012 eg Cosy)
5013
5014 * mtemp/MObservatoryLocation.[h,cc], mtemp/MVPObject.[h,cc],
5015 mtemp/MVPPlotter.[h,cc]:
5016 - added changes discussed in Wuerzburg
5017
5018 * mfileio/MCT1ReadPreProc.cc:
5019 - some simplifications
5020
5021
5022
5023 2003/01/31: Antonio Stamerra & Marcos Lopez
5024
5025 * mgui/MCamDisplay.[cc|h]
5026 - Added a new function MCamDisplay::SetPix(const Int_t pixnum,
5027 const Int_t color, Float_t min, Float_t max) which just set the
5028 color of a given pixel
5029
5030 * created two new classes for simulating the second level trigger
5031 in the directory manalysis:
5032 - MTrigLvl2.[cc|h] // Implement the Lvl2 topology and
5033 // selection strategies
5034 - MTrigLvl2FillTask.[cc|h] // For a given MMc event, fill the
5035 // MTrigLvl2 with the Lvl1 trigger
5036 // information
5037
5038 * manalysis/Makefile
5039 - Added -I../mgui
5040
5041 * Added macro macros/triglvl2.C which uses the above classes.
5042
5043
5044
5045 2003/01/27: Robert Wagner
5046
5047 * mfileio/MCT1ReadPreProc.[cc|h]
5048 - Added call of MTaskList::ReInit after processing of new
5049 run header
5050 - Filling of MC container complies to Oscar's changes of
5051 MMcEvt.[hxx,cxx] dated 2003/01/20
5052 - Added filling of run number in MRawRunHeader object while
5053 processing a new run header
5054
5055
5056
5057 2003/01/23: Robert Wagner
5058
5059 * manalyis/MSigmabarCalc.cc
5060 - MSigmabarCalc::Process()
5061 Replaced fMcEvt->GetTheta() by fMcEvt->GetTelescopeTheta()
5062
5063
5064
5065 2003/01/20: Oscar Blanch
5066
5067 * mmc/MMcEvt.[hxx,cxx]
5068 - Data members: fElecCphFraction, fMuonCphFraction,
5069 fOtherCphFraction have been introduced.
5070 - Class version updated to 3.
5071
5072 * mmc/MMcCorsikaRunHeader.[h.cc]
5073 - Data members: fWobbleMode and fAtmosphericModel introduced.
5074 - Class version updated to 2.
5075
5076
5077
5078 2003/01/19: Thomas Bretz
5079
5080 * manalysis/MCerPhotCalc.[h,cc]:
5081 - slight changes, mainly to the layout
5082
5083 * manalysis/MCerPhotEvt.[h,cc]:
5084 - some small changes to make the code a bit faster
5085
5086 * manalysis/MCerPhotPix.[h,cc]:
5087 - added AddNumPhotons
5088
5089 * mbase/MContinue.[h,cc]:
5090 - changed comments
5091 - enhanced functionality and fixed some small bugs
5092
5093 * mbase/Makefile:
5094 - added mfilter to paths (to be fixed)
5095
5096 * mfileio/MCT1ReadPreProc.cc:
5097 - Init fNumEvents = 0
5098
5099 * mgeom/MGeomCam.cc:
5100 - return 0 Ratio if the pixel number exceeds the number of pixels
5101
5102 * mgui/MCamDisplay.[h,cc]:
5103 - added sanity check for the maximum number of pixels
5104 - added functions to set the three different palettes
5105 - removed the buttons
5106 - fixed the context menu display
5107
5108 * mhist/HistLinkDef.h, mhist/Makefile:
5109 - added MHCerPhotEvt
5110
5111 * mhist/MHCerPhotEvt.[h,cc]:
5112 - added
5113
5114 * mhist/MFillH.cc:
5115 - changed the initialization of fParContainer from pList to NULL
5116
5117 * mhist/MHHillasExt.cc:
5118 - fixed a smallo bug when filling the histograms (crached when scaling
5119 under some circumstances)
5120
5121 * mhist/MHStarMap.cc:
5122 - added a warning output
5123
5124 * mmontecarlo/MMcCollectionAreaCalc.cc:
5125 - added a check for impact=NaN (some MC Files have this)
5126
5127
5128
5129 2003/01/17: Robert Wagner
5130
5131 * manalysis/MApplyPadding.cc
5132 - bugfix: Effective number of used pixels taken from
5133 MCerPhotEvt container, not from MPedestalCam
5134
5135
5136
5137 2003/01/16: Wolfgang Wittek
5138
5139 * mhist/MHMatrix.[h,cc]
5140 - member function MHMatrix::Read added
5141 the function calls TObject::Read(name) and SetName(name)
5142
5143
5144
5145 2003/01/15: Wolfgang Wittek
5146
5147 * mdata/MDataMember.cc
5148 - in MDataMember::PreProcess()
5149 "if (fCall)" replaced by "if (fCall && !fObject)"
5150 The additional condition "&& !fObject" is to make sure that read
5151 MDataMembers works correctly.
5152
5153
5154
5155 2003/01/08: Oscar Blanch Bigas
5156
5157 * mgeom/MGeomMirror.[h,cc]
5158 - Varible members to store mirror reflectivities have been
5159 introduced: fReflectivity and fWavelength.
5160 - Member function to set reflectivity added: SetReflectivity
5161 - Member function to set TArrayF size: SetArraySize
5162 - Class version number changed to 2.
Note: See TracBrowser for help on using the repository browser.