source: trunk/MagicSoft/Mars/Changelog@ 1789

Last change on this file since 1789 was 1789, checked in by moralejo, 23 years ago
*** empty log message ***
File size: 159.8 KB
Line 
1
2 -*-*- END -*-*-
3 2003/02/24: Abelardo Moralejo
4
5 * mmontecarlo/MMcTriggerRateCalc.cc
6 - Fixed mistake when analysing camera files containing all events
7 (including non-triggers): fShowers was always zero.
8 - Added reading of MMcTrigHeaders in ReInit
9
10 * macros/trigrate.C
11 - Added some explanations. Style improvements in function GetNSBEvents.
12
13 * mhist/MHMcRate.[h,cc]
14 - Added GetTriggerRate() and GetTriggerRateError()
15 - Added members fMultiplicity and fMeanThreshold, with their
16 corresponding Set and Get functions
17 - Added info on discriminator threshold and L1 trigger multiplicity
18 on the printout.
19
20 * mmc/MMcTrigHeader.hxx
21 - Added GetMultiplicity() and GetMeanThreshold()
22
23 2003/02/22: Wolfgang Wittek
24
25 * mhist/Makefile
26 - MHSigmaTheta added
27
28 * mhist/HistLinkDef.h
29 - MHSigmaTheta added
30
31 * mhist/MHSigmaTheta.[h,cc]
32 - type inconsisitency removed
33
34
35 2003/02/21: Abelardo Moralejo
36
37 * mmontecarlo/MMcTriggerRateCalc.[h,cc]
38 - adapted to new camera files, added warnings.
39 - added ReInit procedure to read relevant info from from the run headers
40
41 * mhist/MHMcRate.[h,cc]
42 - adapted accordingly. Added Set functions for several members.
43
44 * mmc/MMcCorsikaRunHeader.h
45 - added Get functions for fELowLim, fEUppLim and fSlopeSpec.
46
47 * mmain/MMontecarlo.cc, macros/trigrate.C
48 - adapted to changes above, changed MReadTree to MReadMarsFile to
49 be able to read the run headers.
50
51 2003/02/21: Antonio Stamerra
52
53 * manalysis/MMcTriggerLvl2.[cc|h]
54 - new data member fCompactNN needed to define a compact pixels
55 - new inline functions SetCompactNN and GetCompactNN
56 - Method Calc(int neighpix) -> Calc(). The value of neighpix
57 is read from fCompactNN
58
59 * manalysis/MMcTriggerLvl2Calc.[cc|h]
60 - Check on fCompactNN added in the PreProcess
61
62 * macros/triglvl2.C
63 - Set of fCompactNN added
64
65
66
67 2003/02/21: Wolfgang Wittek
68
69 * manalysis/MSelFinal.[h,cc]
70 - 'const' removed from pointers
71
72 * macros/AnalyseCT1.C
73 - macro for the CT1 analysis (work in progress)
74
75
76 2003/02/20: Wolfgang Wittek
77
78 * manalysis/Makefile
79 - add MSelFinal
80
81 * manalysis/AnalysisLinkDef.h
82 - add MSelFinal
83
84 * manalysis/MPadSchweizer.[h,cc]
85 - slight modification of padding procedure
86
87 * manalysis/MSigmabarCalc.[h,cc]
88 - 'const' removed from pointers
89
90 * mhist/MHMatrix.[h,cc]
91
92 * mhist/MHSigmaTheta.[h,cc]
93
94
95
96 2003/02/20: Abelardo Moralejo
97
98 * mhist/MH.cc
99 - Removed call to TGaxis::Optimize for compilation under root
100 versions > 3.03, since in them this procedure is no longer existing.
101 I did this to allow compilation under root_3.04, since earlier
102 versions has a bug which prevents from plotting in the simple way
103 some variables in a tree (example: fConc and others in the output
104 of star.C). This is a temporal fix, I guess something will have to
105 substitute the call to Optimize...
106
107
108
109 2003/02/20: Antonio Stamerra
110
111 * manalysis/MMcTriggerLvl2.[cc|h]
112 - new; replaces MTrigLvl2.[cc|h]
113 - new data members: fLutPseudoSize, fPseudoSize.
114 - functions renamed:
115 GetLutPseudoSize -> CalcBiggerLutPseudoSize
116 GetBiggerFiredCell -> CalcBiggerFiredCell
117 - new inline functions: GetLutPseudoSize(), GetPseudoSize().
118 - new member functions:
119 Calc(); CalcPseudoSize (not yet implemented)
120 - Redefined Print() function as a TObject.
121 - pixels_in_cell and pixels_in_lut redefined as static data members
122
123 * manalysis/MMcTriggerLvl2Calc.[cc|h]
124 - new; replaces MTrigLvl2FillTask.[cc|h]
125 - creation and filling of histograms commented
126 - Process() calls the MMcTriggerLvl2::Calc()
127
128 * mfilter/MFTriggerLvl2.[h|cc]
129 - new class to select events using MMcTriggerLvl2 data members.
130
131 * macros/triglvl2.C
132 - added example to use the MFTriggerLvl2 filter.
133
134
135
136 2003/02/19: Wolfgang Wittek
137
138 * manalysis/MSelBasic.[h,cc]
139 - new; evaluates the Basic Cuts (after the calibration)
140
141 * manalysis/MSelStandard.[h,cc]
142 - new; evaluates the Standard Cuts
143 (after the calculation of the image parameters and before the
144 calculation of the hadronness)
145
146 * manalysis/MHillasCalc.[h,cc]
147 - replace
148 fHillas = (MHillas*)pList->FindCreateObj(fHilName);
149 by
150 fHillas = (MHillas*)pList->FindCreateObj("MHillas",fHilName);
151 in order to allow MHillas containers with a name
152 different from "MHillas"
153
154 * mhist/MHHillasExt.[h,cc]
155 - replace
156 TObject *obj = plist->FindObject("MHillas");
157 by
158 TObject *obj = plist->FindObject(fHilName, "MHillas");
159 in order to allow MHillas containers with a name
160 different from "MHillas"
161 - add a 3rd argument in the constructor : fHilName
162
163 * manalysis/MHillasSrcCalc.[h,cc]
164 - add new argument for constructor:
165 the name of the MHillas input container
166 in order to allow MHillas input containers with a name
167 different from "MHillas"
168
169 * mhist/MHMatrix.[h,cc]
170 - add member function DefRefMatrix();
171 it defines the reference sample for the g/h separation;
172 the selection of events for the reference sample can be made such
173 that the distribution of a certain variable (for example Theta)
174 agrees with a target distribution.
175
176 * mfilter/MFEventSelector.[h,cc]
177 - add new argument for constructor:
178 the name of the read object
179 in order to allow also read objects which have a name different from
180 "MRead"
181
182
183
184 2003/02/18: Thomas Bretz
185
186 * mfileio/MReadTree.cc:
187 - added a fix for a bug in the workaround using wildcards
188
189
190
191 2003/02/14: Thomas Bretz
192
193 * mtemp/MObservatory.[h,cc]:
194 - added
195
196
197
198 2003/02/10: Abelardo Moralejo
199
200 * Makefile.conf.osf1
201 - Added -lpthread to compilation flags (otherwise linking fails in alfa)
202
203 * manalysis/Makefile, AnalysisLinkDef.h
204 - Changed MApplyPadding for MPadding
205
206
207
208 2003/02/07: Wolfgang Wittek
209
210 * mhist/MHSigmaTheta.[h,cc]
211 - new; 2D distribution : Theta, Sigmabar
212 3D distribution : Theta, pixel number, Sigma
213 3D distribution : Theta, pixel number, Sigma^2-Sigmabar^2
214 these histograms may be used for the padding
215
216 * manalysis/MPadding.[h,cc]
217 - new; replaces MApplyPadding.[h,cc]
218 some errors removed
219
220 * manalysis/MSigmabar.[h,cc]
221 - new definition of Sigmabar (only relevant for MAGIC)
222 - add in member function 'Calc' a 3rd argument : 'const MCerPhotEvt &evt'
223 - calculate sigmabar for 'MCerPhotEvt' pixels
224 - in member function 'Calc' return Float_t fSigmabar instead of Bool_t
225 - copies of objects replaced by references
226
227 * manalysis/MSigmabarCalc.[h,cc]
228 - fSig->Calc(*fCam, *fPed) replaced by
229 fSig->Calc(*fCam, *fPed, *fEvt)
230 - change type of result of fSig->Calc from Bool_t to Float_t
231
232 * mfileio/MCT1ReadPreProc.cc
233 - add in member function PreProcess() the initialization of the total
234 number of pixels :
235 fPedest->InitSize(iMAXNUMPIX);
236 - remove statements that cannot be reached ('break' after 'return')
237
238 * manalysis/MPadSchweizer.[h,cc]
239 - alternative to MPadding
240 - does the padding ala Thomas Schweizer
241
242
243
244 2003/02/06: Thomas Bretz
245
246 * mgeom/MGeomCam.[h,cc]:
247 - fixed a warning (GetPixRatio(int) --> GetPixRatio(Uint)
248
249
250
251 2003/02/07: Antonio Stamerra
252
253 * manalysis/MTrigLvl2.[cc|h]
254 - added new function
255 MTrigLvl2::GetLutCompactPixel(int cell, int lut, int neighpix=2)
256 which calculates the number of compact pixel in one lut
257 - added new function GetLutPseudoSize(int neighpix=2) which calculates
258 the lut-pseudosize
259 - added static data member pixel_in_lut
260 - merging of the PrintCell and PrintStatus functions in a single
261 Print(int cell) function
262 - Added comments using the standard layout
263 - some small changes following Thomas comments (memset, *fLog)
264
265
266
267 2003/02/06: Thomas Bretz
268
269 * mbase/MLog.[h,cc]:
270 - serialized the GUI output (problems with mutithreded prgs,
271 eg Cosy)
272
273 * mtemp/MObservatoryLocation.[h,cc], mtemp/MVPObject.[h,cc],
274 mtemp/MVPPlotter.[h,cc]:
275 - added changes discussed in Wuerzburg
276
277 * mfileio/MCT1ReadPreProc.cc:
278 - some simplifications
279
280
281
282 2003/01/31: Antonio Stamerra & Marcos Lopez
283
284 * mgui/MCamDisplay.[cc|h]
285 - Added a new function MCamDisplay::SetPix(const Int_t pixnum,
286 const Int_t color, Float_t min, Float_t max) which just set the
287 color of a given pixel
288
289 * created two new classes for simulating the second level trigger
290 in the directory manalysis:
291 - MTrigLvl2.[cc|h] // Implement the Lvl2 topology and
292 // selection strategies
293 - MTrigLvl2FillTask.[cc|h] // For a given MMc event, fill the
294 // MTrigLvl2 with the Lvl1 trigger
295 // information
296
297 * manalysis/Makefile
298 - Added -I../mgui
299
300 * Added macro macros/triglvl2.C which uses the above classes.
301
302
303
304 2003/01/27: Robert Wagner
305
306 * mfileio/MCT1ReadPreProc.[cc|h]
307 - Added call of MTaskList::ReInit after processing of new
308 run header
309 - Filling of MC container complies to Oscar's changes of
310 MMcEvt.[hxx,cxx] dated 2003/01/20
311 - Added filling of run number in MRawRunHeader object while
312 processing a new run header
313
314
315
316 2003/01/23: Robert Wagner
317
318 * manalyis/MSigmabarCalc.cc
319 - MSigmabarCalc::Process()
320 Replaced fMcEvt->GetTheta() by fMcEvt->GetTelescopeTheta()
321
322
323
324 2003/01/20: Oscar Blanch
325
326 * mmc/MMcEvt.[hxx,cxx]
327 - Data members: fElecCphFraction, fMuonCphFraction,
328 fOtherCphFraction have been introduced.
329 - Class version updated to 3.
330
331 * mmc/MMcCorsikaRunHeader.[h.cc]
332 - Data members: fWobbleMode and fAtmosphericModel introduced.
333 - Class version updated to 2.
334
335
336
337 2003/01/19: Thomas Bretz
338
339 * manalysis/MCerPhotCalc.[h,cc]:
340 - slight changes, mainly to the layout
341
342 * manalysis/MCerPhotEvt.[h,cc]:
343 - some small changes to make the code a bit faster
344
345 * manalysis/MCerPhotPix.[h,cc]:
346 - added AddNumPhotons
347
348 * mbase/MContinue.[h,cc]:
349 - changed comments
350 - enhanced functionality and fixed some small bugs
351
352 * mbase/Makefile:
353 - added mfilter to paths (to be fixed)
354
355 * mfileio/MCT1ReadPreProc.cc:
356 - Init fNumEvents = 0
357
358 * mgeom/MGeomCam.cc:
359 - return 0 Ratio if the pixel number exceeds the number of pixels
360
361 * mgui/MCamDisplay.[h,cc]:
362 - added sanity check for the maximum number of pixels
363 - added functions to set the three different palettes
364 - removed the buttons
365 - fixed the context menu display
366
367 * mhist/HistLinkDef.h, mhist/Makefile:
368 - added MHCerPhotEvt
369
370 * mhist/MHCerPhotEvt.[h,cc]:
371 - added
372
373 * mhist/MFillH.cc:
374 - changed the initialization of fParContainer from pList to NULL
375
376 * mhist/MHHillasExt.cc:
377 - fixed a smallo bug when filling the histograms (crached when scaling
378 under some circumstances)
379
380 * mhist/MHStarMap.cc:
381 - added a warning output
382
383 * mmontecarlo/MMcCollectionAreaCalc.cc:
384 - added a check for impact=NaN (some MC Files have this)
385
386
387
388 2003/01/17: Robert Wagner
389
390 * manalysis/MApplyPadding.cc
391 - bugfix: Effective number of used pixels taken from
392 MCerPhotEvt container, not from MPedestalCam
393
394
395
396
397
398 2003/01/16: Wolfgang Wittek
399
400 * mhist/MHMatrix.[h,cc]
401 - member function MHMatrix::Read added
402 the function calls TObject::Read(name) and SetName(name)
403
404
405
406 2003/01/15: Wolfgang Wittek
407
408 * mdata/MDataMember.cc
409 - in MDataMember::PreProcess()
410 "if (fCall)" replaced by "if (fCall && !fObject)"
411 The additional condition "&& !fObject" is to make sure that read
412 MDataMembers works correctly.
413
414
415
416 2003/01/08: Oscar Blanch Bigas
417
418 * mgeom/MGeomMirror.[h,cc]
419 - Varible members to store mirror reflectivities have been
420 introduced: fReflectivity and fWavelength.
421 - Member function to set reflectivity added: SetReflectivity
422 - Member function to set TArrayF size: SetArraySize
423 - Class version number changed to 2.
424
425
426
427 2002/12/13: Abelardo Moralejo
428
429 * manalysis/MSigmabar.cc
430 - added cast in first arguments in calls to TMath::Min and TMath::Max
431 otherwise, we got a compilation error in Alpha machines.
432
433
434
435 2002/12/13: Oscar blanch
436
437 * mgeom/MGeomMirror.[h,cc]
438 - function SetMirrorDeviations added
439
440
441
442 2002/12/09: Robert Wagner
443
444 * manalysis/MSigmabar.[cc,h]:
445 - added
446
447 * manalysis/MSigmabarCalc.[cc,h]:
448 - added
449
450 * manalysis/MSigmabarParam.[cc,h]:
451 - added
452 - preliminary version for CT1 test
453
454 * manalysis/MApplyPadding.[cc,h]:
455 - added
456
457 * mhist/MHSigmabarTheta.[cc,h]:
458 - added
459
460 * mhist/MHSigmabarPixel.[cc,h]:
461 - added
462 - preliminary version for CT1 test
463
464 * mtemp/MObservatoryLocation.[cc,h]:
465 - added
466
467 * mtemp/MVPObject.[cc,h]:
468 - added
469
470 * mtemp/MVPPlotter.[cc,h]:
471 - added
472
473 * mtemp/MVPTime.[cc,h]:
474 - added
475
476 * mtemp/TempIncl.h, mtemp/TempLinkDef.h, mtemp/Makefile:
477 - added above mentioned classes
478
479 * mhist/HistLinkDef.h, mhist/Histfile:
480 - added above mentioned classes
481
482 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
483 - added above mentioned classes
484
485
486
487 2002/11/25: Thomas Bretz
488
489 * mgui/MCamDisplay.cc:
490 - fixed a bug when sprintf the pointer to the char-array, only
491 took place on alphas.
492
493 * macros/multidimdist2.C:
494 - renamed eventloops (instances had same names)
495 - fixed a type in PrintStatistics (the gamma statistics
496 were printed two times)
497
498 * mbase/MEvtLoop.cc:
499 - take the lowest value (entries from MRead or user input)
500 for the progress bar
501 - reset the progress bar
502
503 * mbase/MFilter.h:
504 - added 'private'
505
506 * meventdisp/MGCamDisplay.[h,cc], meventdisp/MGEvtDisplay.[h,cc],
507 meventdisp/MGFadcDisp.[h,cc], mmain/MMonteCarlo.[h,cc],
508 mmain/MAnalysis.[h,cc], mmain/MBrowser.[h,cc],
509 mmain/MCameraDisplay.[h,cc], mmain/MDataCheck.[h,cc],
510 mmain/MEvtDisp.[h,cc], mmain/MMars.cc:
511 - changed from TTransientFrame to TMainFrame (with this I
512 get decorations, eg. Close Button)
513
514 * meventdisp/MGEvtDisplay.cc:
515 - Update the layout each time the fEvtInfo has changed
516
517 * mfileio/MCT1ReadAscii.cc, mfileio/MCT1ReadPreProc.cc:
518 - delete return of gSystem->ExpandPathName
519
520 * mfileio/MCT1ReadPreProc.[h,cc]:
521 - added output of Time
522 - added usage of Selector
523 - changed MTask basics to be private
524
525 * mfileio/MRead.[h,cc]:
526 - added comment about selector
527 - added Selector-stuff
528
529 * mfileio/MReadMarsFile.[h,cc], mfileio/MReadTree.[h,cc]:
530 - added 'entries' argument to AddFile
531
532 * mfileio/MReadTree.[h,cc]:
533 - added workaround for a root bug when a file doesn't exist
534 - changed AddFiles to use Add(TChain*)
535 - changed to use Selector
536
537 * mfilter/MF.cc:
538 - Set debug level to suppress output when MFDataChain is created
539
540 * mfilter/MFEventSelector.h:
541 - changed Pre//PostProcess to private
542
543 * mfilter/MF.cc, mfilter/MFilterList.cc:
544 - changed the use of Pre//PostProcess to CallPre//PostProcess
545
546 * mhist/MBinning.[h,cc]:
547 - changed comments
548 - added SetEdgesCos
549
550 * mhist/MFillH.[h,cc]:
551 - added GetBinCenterLog
552
553 * mhist/MH3.h:
554 - added default argument to GetHistByName
555
556 * mhist/MHAlphaEnergyTheta.[h,cc], mhist/MHAlphaEnergyTime.h,
557 mhist/MHEffOnTime.[h,cc], mhist/MHEffOnTimeTheta.h,
558 mhist/MHEffOnTimeTime.h, mhist/MHFlux.[h,cc], mhist/MHGamma.[h,cc],
559 mhist/MHMcEnergyMigration.h, mhist/MHThetabarTheta.[h,cc],
560 mhist/MHThetabarTime.h:
561 - changed the output
562 - changed the algorithms to be more modular (more usage of member
563 function)
564 - changed ClassDef to 0
565 - fixed some small bugs (access of TArray[n])
566
567 * mhist/MHHadronness.[h,cc]:
568 - removed shortest distance to (0,1) stuff
569
570 * mhist/MHMcCollectionArea.h:
571 - changed Fill to Double_t
572
573 * mhist/MHTimeDiffTheta.[h,cc], mhist/MHTimeDiffTime.[h,cc]:
574 - in a first draft changed to use 200ns timing of CT1
575 - changed ClassDef to 0
576
577
578
579 2002/11/22: Thomas Bretz
580
581 * macros/threshold.C:
582 - Simplified the new writing routine
583
584 * mbase/MLog.h:
585 - added a Getter-function for the debug level
586
587 * mbase/MTaskList.cc:
588 - added another debugging output
589
590 * mfilter/MF.[h,cc]:
591 - made the automatically created chain names unique
592
593 * mfilter/MFDataChain.cc:
594 - corrected the GetRule stuff ({} were missing)
595
596 * mhist/MH3.cc:
597 - added MBinning as class type to FindObject
598 - added BinningHist (without the X) as binning name for a 1D histogram
599
600 * mfileio/MReadMarsFile.cc:
601 - corrected typo
602
603 * mfileio/MCT1ReadPreProc.cc:
604 - fixed a warning
605
606
607
608 2002/11/22: Abelardo Moralejo
609
610 * macros/threshold.C:
611 - Added 2nd argument to write an output file containing the
612 energy spectrum histogram.
613
614
615
616 2002/11/21: Thomas Bretz
617
618 * mbase/MAGIC.h, mbase/MEvtLoop.[h,cc], MTask.cc, MTaskList.cc:
619 - introduced kERROR to stop an eventloop with an error
620
621 * mbase/MTask.h:
622 - made SetFilter virtual
623
624 * mbase/MTaskList.[h,cc]:
625 - added new member function AddToListBefore/After
626 - split the code of the AddToList function into CheckAddToList
627
628 * manalysis/MMultiDimDistCalc.cc:
629 - introduced usage of kERROR in case the matrix is not posdef.
630
631 * macros/collarea.C:
632 - some simplifications
633
634 * mhist/MHMcRate.h, mhist/MHMcIntRate.h, mhist/MHEnergyTime.h,
635 mhist/MHEnergyTheta.h, mfileio/MCTReadPreProc.cc, mfileio/MChain.h,
636 mfileio/MReadMarsFile.h, mfileio/MReadTree.cc, mfileio/MWriteAsciiFile.h,
637 mfileio/MWriteRoootFile.[h,cc], manalysis/MMatrixLoop.h,
638 manalysis/MEnergyEstimate.h, mbase/MGGroupFrame.h, mbase/MGTask.h,
639 mfilter/MFParticleId.h:
640 - updated documentation
641
642 * mfileio/MCT1ReadPreProc.cc:
643 - Changed MSrcPosCam name from Source to MSrcPosCam
644 - changed the way the MC data is filled into the MC container
645 - updated algorithm to read preproc files
646
647 * mfileio/MReadMarsFile.cc:
648 - printed a warning to the screen in case Camera=V0.5
649
650 * mfileio/structures.h:
651 - changed to version 0.6
652
653 * mmc/MMcEvt.hxx:
654 - added GetTelescopePhi
655 - added GetTelescopeTheta
656
657 * mdata/MDataChain.[h,cc]:
658 - added 'sqr'
659
660 * mfilter/MF.[h,cc]:
661 - added support for MFDataChain
662
663 * mfilter/MFDataChain.[h,cc]:
664 - added
665
666 * mfilter/Makefile, mfilter/FilterLinkDef.h:
667 - added MFDataChain
668
669
670
671 2002/11/20: Thomas Bretz
672
673 * macros/dohtml.C:
674 - fixed a typo
675
676 * mmain/MAnalysis.cc:
677 - removed the Anti-Source from the hillas calculation
678
679 * mhist/MHFadcPix.[h,cc], mhist/MHFadcCam.[h,cc],
680 mmain/MDataCheck.[h,cc]:
681 - added enhancement for displaying sum of FADC slices
682
683
684
685 2002/11/20: Abelardo Moralejo
686
687 * macros/collarea.C:
688 - Introduced check before opening output file to avoid annoying
689 error message.
690
691
692
693 2002/11/19: Abelardo Moralejo
694
695 * macros/collarea.C:
696 - Removed some strange pieces of text which somehow got into the
697 file (anyone knows how?)
698
699
700
701 2002/11/19: Thomas Bretz
702
703 * mmain/MMonteCarlo.cc:
704 - exchanged MReadTree with MReadMarsFile for collection area calculation
705
706 * mmontecarlo/MMcCollectionAreaCalc.cc:
707 - fixed the uninitialized fTheta
708
709 * macros/MagicHillas.C:
710 - removed the unnecessary second MHillasSrcCalc
711 - removed also the corresponding AddToList for the tasklist
712
713 * mhist/MH.cc:
714 - make FindGoodLimits work
715
716
717
718 2002/11/19: Abelardo Moralejo
719
720 * macros/collarea.C:
721 - Added 2nd argument to write an output file containing the
722 collection area histogram.
723
724
725
726 2002/11/18: Abelardo Moralejo
727
728 * mmain/MMars.cc:
729 - Corrected typo on Mars starting screen.
730
731 * mhist/MHMcCollectionArea.cc:
732 - Added comment.
733
734 * manalysis/MImgCleanStd.cc:
735 - implemented "democratic cleaning" (cut value proportional to square
736 root of pixel area) according to Wolfgang's suggestion.
737
738 * macros/MagicHillas.C:
739 - added missing declaration MHillasSrcCalc csrc2;
740
741 * mgeom/MGeomPix.cc:
742 - fixed some typos in comments
743
744
745
746 2002/11/18: Thomas Bretz
747
748 * macros/CT1Hillas.C:
749 - changed MWRiteRootFile to write the histograms only
750 - renamed HillasSource to MHillasSrc
751
752 * macros/MagicHillas.C:
753 - removed all anti source stuff (corresponding to star.C)
754 - changed MWRiteRootFile to write the histograms only
755 - renamed HillasSource to MHillasSrc
756
757 * macros/estfit.C:
758 - renamed HillasSource to MHillasSrc
759
760 * macros/estimate.C:
761 - renamed HillasSource to MHillasSrc
762 - changed to display more interesting histograms
763
764 * multidimdist.C:
765 - added Theta
766 - added Alpha
767
768 * macros/star.C
769 - removed wrong HillasSource
770 - added MSrcPosCam
771
772 * starplot.C:
773 - removed all anti source stuff (corresponding to star.C)
774 - renamed HillasSource to MHillasSrc
775
776 * macros/multidimdist2.C:
777 - fixed a typo
778 - added Alpha and Theta
779
780 * mbase/MTime.h:
781 - added minus-operator
782
783 * mdata/MDataChain.[h,cc]:
784 - added floor
785
786 * mhist/MFillH.[h,cc]:
787 - moved MMap and MMap support MHArray
788
789 * mhist/MHArray.[h,cc]:
790 - added MMap
791 - added MMap-support
792 - added legend
793 - added more draw options
794
795 * mhist/MHFadcCam.[h,cc]:
796 - added Fill(const MRawEvtData*)
797 - added const getter functions
798
799 * mhist/MHFadcPix.h:
800 - added const getter functions
801
802 * mmc/MMcCorsikaRunHeader.[h,cc]:
803 - removed underscores from names
804 - removed empty destructor
805
806 * manalysis/MPedestalCalc.[h,cc]:
807 - added (not yet to LinkDef.h and Makefile)
808
809 * mgeom/MGeomMirror.[h,cc], mgeom/MGeomPMT.[h,cc],
810 mmc/MMcConfigRunHeader.[h,cc], mmc/MMcCorsikaRunHeader.[h,cc]:
811 - changed comments
812 - added missing manalysis-dir (strange!)
813
814 * macros/dohtml.C:
815 - added new macros
816
817
818
819 2002/11/16: Abelardo Moralejo
820
821 * mmc/MMcCorsikaRunHeader.cc:
822 - added default destructor
823
824
825
826 2002/11/15: Thomas Bretz
827
828 * mmc/MMcCorsikaRunHeader.[h,cc]:
829 - small changes
830
831 * mmc/McLinkDef.h:
832 - added missing MMcCorsikaRunHeader
833
834
835
836 2002/11/15: Oscar Blanch
837
838 * mmc/MMcCorsikaRunHeader.[h,cc]:
839 - added
840
841
842
843 2002/11/14: Thomas Bretz
844
845 * mmain/MAnalysis.cc, mmain/MMonteCarlo.cc, mmain/MDataCheck.cc:
846 - removed SetProgressBar of reader
847
848 * mhist/MHFlux.cc:
849 - localized some variables
850 - get rid of old c-style sprintf
851 - return errorflag in Parab as return value!
852
853 * mgeom/MGeomPMT.cc, mgeom/MGeomMirror.cc:
854 - removed redefinition of a default argument
855
856 * mhist/MHMcIntRate.cc, mhist/MHMcCollectionArea.[h,cc]:
857 - changed the error calculation according to a suggestion from Raquel
858
859 * mmontecarlo/MMcCollectionAreaCalc.cc:
860 - for collection area: MMcTrig isn't needed if all showers are
861 triggered showers
862
863 * mmc/MMcConfigRunHeader.cc:
864 - made function definition identical to function declaration
865
866 * macros/star.C:
867 - removed anti source for the moment
868
869 * macros/multidimdist2.C:
870 - added
871
872 * macros/comprob.C, macros/multidimdist.C:
873 - changed to use MHillasSrc instead of HillasSource
874
875 * mhist/MHHadronness.cc:
876 - changed the output of Print a bit
877
878
879
880 2002/11/13: Thomas Bretz
881
882 * mfilter/MFEventSelector.[h,cc]:
883 - if total number of events read from file the selector worked only for
884 one eventloop - fixed.
885 - changed MReadMarsFile to MRead
886
887 * mbase/MContinue.cc:
888 - fixed a typo
889
890 * mbase/MEvtLoop.cc, meventdisp/MGEvtDisplay.cc:
891 - renamed MReadMarsFile/MReadTree to MRead
892
893 * mfileio/FileIOLinkDef.h, mfileio/Makefile:
894 - added MRead
895
896 * mfileio/MRead.[h,cc]:
897 - added
898
899 * mfileio/MReadMarsFile.[h,cc], mfileio/MReadTree.[h,cc]:
900 - renamed from MReadMarsFile to MRead
901 - derived from MRead
902 - removed progressbar support from MReadTree
903
904 * mfileio/MWriteRootFile.cc:
905 - added a info output
906
907 * mfileio/MCT1ReadPreProc.[h,cc]:
908 - changed to work much much better :)
909
910 * mgeom/GeomLinkDef.h, mmc/McLinkDef.h:
911 - added missing LinkDefs (helllo Oscar!)
912
913 * mgeom/MGeomCamCT1.cc:
914 - mirrored the CT1 camera in x (CT1 default)
915
916 * mgeom/MGeomMirror.[h,cc]:
917 - some small changes
918
919 * mgeom/MGeomPMT.[h,cc]:
920 - changed usage of TArrayF from pointer to reference
921
922 * mgui/MCamDisplay.cc:
923 - fixed a crash at delete when the user closed a automatically
924 created canvas
925
926 * mhist/MHFadcCam.[h,cc]:
927 - implemented ResetHistograms
928
929 * mhist/MHMatrix.[h,cc]:
930 - implemented ReduceNumberOfRows (preliminary, untested)
931
932 * mmc/MMcConfigRunHeader.[h,cc]:
933 - some small changes
934 - changed usage of TArrayF from pointer to reference
935
936
937
938 2002/11/11: Thomas Bretz
939
940 * manalysis/MHillas.cc:
941 - moved division by size before test of number of used pixels
942
943 * mfileio/MCT1ReadPreProc.cc:
944 - added a eof-conditional
945
946 * mhist/MH3.cc:
947 - added a 'nonew' option to DrawClone
948
949 * mhist/MHHadronness.cc:
950 - check for NaN in Fill
951
952
953
954 2002/11/08: Oscar Blanch
955
956 * mgeom/MGeomPMT.[h,cc]:
957 - added
958 - Information about simulated QE
959
960 * mgeom/MGeomMirror.[h,cc]:
961 - added
962 - Mirrors properties
963
964 * mgeom/Makefile:
965 - modified to compile new classes
966
967 * mmc/MMcConfigRunHeader.[h,cc]:
968 - added
969
970 * mmc/Makefile:
971 - modified to compile new classes
972
973
974
975 2002/11/08: Thomas Bretz
976
977 * mhist/MHMatrix.cc:
978 - implemented a zero suppression
979
980
981
982 2002/11/07: Thomas Bretz
983
984 * mfilter/Makefile, mfilter/FilterLinkDef.h:
985 - added MFEventSelector
986
987 * mfilter/MFEventSelector.[h,cc]:
988 - added
989
990 * mfilter/MF.[h,cc]:
991 - made gsDef[Name,Title] a static const member
992
993 * manalysis/MMultiDimDistCalc.cc:
994 - changed the default function to kernel
995
996
997
998 2002/11/07: Oscar Blanch
999 * mmc/MMcEvt.[hxx,cxx]
1000 - Some new variable from the reflector header event.
1001 - Class version switched to 2
1002
1003 * mmc/MMcRunHeader.[hxx,cxx]
1004 - Varible member fOpticLinksNoise has been introduced
1005 - Class version switched to 3
1006
1007
1008 2002/11/07: Wolfgang Wittek
1009
1010 * mhist/MHFlux.[h,cc]
1011 - changed to avoid warnings : "member initializers will be re-ordered
1012 to match declaration order"
1013
1014
1015
1016 2002/11/06: Thomas Bretz
1017
1018 * Makfile.conf.osf5.1:
1019 - added
1020
1021 * mhist/MHMatrix.cc:
1022 - changed all math.h functions or similar to TMath
1023 - added 2*pow(rows, 1/(4+cols))^2 as the standard kernel window
1024
1025 * mfileio/MCT1ReadPreProc.cc:
1026 - corrected the reading routines
1027
1028 * mfileio/*.cc:
1029 - changed my eMail address
1030
1031 * mfileio/structures.h:
1032 - small changes to make it architecture independant
1033
1034
1035
1036 2002/11/04: Thomas Bretz
1037
1038 * macros/estimate.C, macros/estfit.C:
1039 - added
1040
1041 * mfileio/structures.h, mfileio/defines.h:
1042 - added from CT1 PreProc 0.5
1043
1044 * mfileio/MCT1ReadPreProc.[h,cc]:
1045 - added
1046
1047 * mhist/MHArray.[h,cc]:
1048 - added
1049
1050 * Makefile:
1051 - changed the order of the libs to make the linker happy
1052
1053 * manalysis/MBlindPixelCalc.[h,cc]:
1054 - changed to be able to use also an existing MBlindPixels from the
1055 parlist
1056 - changed to use the pixel Id instead of its index number from the evt
1057
1058 * manalysis/MCameraSmooth.cc:
1059 - changed to use the pixel Id instead of its index number from the evt
1060
1061 * manalysis/MCerPhotEvt.[h,cc]:
1062 - added GetPixById member function
1063
1064 * manalysis/MCompProbCalc.[h,cc]:
1065 - changed Hadroness to Hadronness
1066
1067 * manalysis/MHillasExt.cc:
1068 - fixed a typo in a comment
1069
1070 * mbase/MParContainer.[h,cc]:
1071 - added New-virtual member function
1072
1073 * mbase/MTask.[h,cc]:
1074 - changed AddToBranchList so that it also accepts comma seperated
1075 lists (only when using TString)
1076
1077 * mdata/MData.[h,cc], mdata/MDataArray.[h,cc], mdata/MDataChain.[h,cc],
1078 mdata/MDataElement.[h,cc], mdata/MDataList.[h,cc]
1079 - updated comments
1080 - added new GetDataMember member function
1081
1082 * mdata/MDataArray.[h,cc]:
1083 - added new member function AddEntry(MData*)
1084
1085 * mfileio/FileIOLinkDef.h, mfileio/Makefile:
1086 - added MCT1ReadPreProc
1087
1088 * mfileio/MCT1ReadAscii.cc:
1089 - removed fNphot->Clear() (automatically called for each event by
1090 Reset();
1091
1092 * mhist/HistLinkDef.h, mhist/Makefile:
1093 - added MHArray
1094
1095 * mhist/MFillH.[h,cc]:
1096 - made work with arrays of histograms (MHArray) the mapping is
1097 done by a preliminary class MMap
1098
1099 * mhist/MH.[h,cc]:
1100 - implemented GetHistByName virtual function
1101 - implemented GetDataMember virtual function
1102 - small changes to debug output
1103
1104 * mhist/MH3.[h,cc]:
1105 - implemented usage of GetDataMember for AddBranchToList
1106 - implemented GetHistByName
1107 - implemented New to be used in MHArray
1108
1109 * mhist/MHAlphaEnergyTheta.h, mhist/MHAlphaEnergyTime.h,
1110 mhist/MHEnergyTheta.h, mhist/MHEnergyTime.h,
1111 mhist/MHHillas.[h,cc], mhist/MHHillasExt.[h,cc],
1112 mhist/MHHillasSrc.[h,cc], mhist/MHMcDifRate.h,
1113 mhist/MHMcEfficiency.h, mhist/MHMcEfficiencyEnergy.h,
1114 mhist/MHMcEfficiencyImpact.h, mhist/MHMcEnergy.[h,cc],
1115 mhist/MHMcEnergyImpact.h, mhist/MHMcEnergyMigration.h,
1116 mhist/MHMcIntRate.h, mhist/MHStarMap.h, mhist/MHThetabarTheta.h,
1117 mhist/MHThetabarTime.h, mhist/MHTimeDiffTheta.h,
1118 mhist/MHTimeDiffTime.h:
1119 - implemented GetHistByName
1120
1121 * mhist/MHHadronness.[h,cc]:
1122 - some small changes and checks
1123 - changed histogram io from standard pointer to '->'
1124
1125 * mhist/MHMatrix.cc:
1126 - updated comments
1127 - implemented GetDataMembers
1128
1129
1130
1131 2002/10/31: Thomas Bretz
1132
1133 * mfileio/MReadTree.cc:
1134 - enhanced the validity of the fNuMEntries workaround from
1135 3.02.06 to 3.07.01
1136
1137 * manalysis/MBlindPixelCalc.h, mhist/MBinning.h:
1138 - added an explicit cast to get rid of a compiler warning on Alpha
1139
1140 * mhist/MH.cc:
1141 - removed an unused variable to get rid of a compiler warning on Alpha
1142
1143
1144
1145 2002/10/31: Wolfgang Wittek
1146
1147 * mhist/MHFlux.[h,cc]:
1148 - type of fVarname and fUnit changed from char* to TString
1149
1150
1151
1152 2002/10/30: Thomas Bretz
1153
1154 * mhist/MHMatrix.cc:
1155 - changed the return value for the kernel method from log to -log
1156 - fixed a typo in an error message
1157 - fixed a crash in case the matrix is singular
1158
1159 * mhist/MMultiDimDistCalc.cc:
1160 - check whether calculation of the distance succeeded
1161
1162 * mfileio/MReadTree.[h,cc]:
1163 - implementation which makes sure, that the number of events returned
1164 by GetEntries always is the correct value.
1165 - removed const from the GetEntries definition
1166 - mainly use GetEntries now instead of fNumEntries
1167
1168 * manalysis/MCameraSmooth.cc:
1169 - removed include of MMcRunHeader
1170
1171
1172
1173 2002/10/29: Thomas Bretz
1174
1175 * manalysis/MHadroness.[h,cc]:
1176 - renamed to MHadronness
1177
1178 * mhist/MHHadroness.[h,cc]:
1179 - renamed to MHHadronness
1180 - small changes to the graphical and text output
1181
1182 * manalysis/Makefile, manalysis/AnalysisLinkDef.h, macros/multidimdist.C,
1183 manalysis/MMultiDimDistCalc.[h,cc], macros/comprob.C,
1184 mhist/Makefile, mhist/HistLinkDef.h:
1185 - changed Hadroness to Hadronness
1186
1187 * manalysis/MCerPhotAnal.cc:
1188 - small changes to the code layout
1189
1190
1191
1192 2002/10/24: Thomas Bretz
1193
1194 * macros/multidimdist.C:
1195 - some changes to make it work with the latest version of Mars
1196
1197 * mhist/MHMatrix.cc:
1198 - changed the Print member function to be more flexible
1199
1200 * mhist/MHHadroness.[h,cc]:
1201 - changed fQfac from TH to TGraph
1202 - changed the Qfactor-plot x-axis from Hadronness to Gamma-Acceptance
1203
1204 * mgui/MCamDisplay.cc:
1205 - changed ratio from ratio to sqrt(ratio) in GetColorError
1206
1207 * mhist/MH3.cc:
1208 - changed plotted errors from spread/sqrt(n) to spread
1209
1210
1211
1212 2002/10/19: Abelardo Moralejo
1213
1214 * manalysis/MCerPhotCalc.cc
1215 - Added check of whether a pixel has all its FADC slices empty before
1216 subtracting pedestal.
1217
1218
1219
1220 2002/10/18: Thomas Bretz
1221
1222 * mfileio/MWriteRootFile.cc
1223 - make sure that the tree is created in the corresponding file
1224
1225
1226
1227 2002/10/17: Thomas Bretz
1228
1229 * mraw/MRawEvtPixelIter.[h,cc]
1230 - added function to get the sum of squares of the samples
1231
1232
1233
1234 2002/10/16: Abelardo Moralejo
1235
1236 * manalysis/MCerPhotCalc2.[h,cc], MCerPhotCalc.[h,cc]
1237 - Class MCerPhotCalc2 renamed MCerPhotCalc (they were redundant).
1238 - Now the default pixel treatment is the same as originally: add
1239 all FADC slices
1240
1241 * macros/MagicHillas.C
1242 - changed accordingly to changes above.
1243
1244
1245
1246 2002/10/16: Thomas Bretz
1247
1248 * macros/readMagic.C:
1249 - added MPrint for MRawEvtHeader
1250 - changed to MPrint to new Skip-Style
1251
1252 * manalysis/MHillasCalc.cc, manalysis/MHillasSrcCalc.cc:
1253 - corrected output stream in case of hex or setfill was used
1254
1255 * mbase/MPrint.[h,cc]:
1256 - introduced new behaviour of PreProcess (EnableSkip)
1257
1258 * mbase/MTaskList.cc:
1259 - fixed a bug in Process which caused Histograms to be written
1260 after each event
1261
1262 * meventdisp/MGEvtDisplay.cc:
1263 - introduced printing of MRawEvtHeader
1264
1265 * mmc/MMcEvt.cxx:
1266 - some small changes
1267 - changed Print output from cout to fLog
1268 - changes to the default values
1269
1270 * mraw/MRawEvtHeader.[h,cc]:
1271 - removed the second empty line after Print
1272 - added Getter-function for the DAQEvtNumber
1273
1274 * macros/star.C, macros/starplot.C, macros/threshold.C, macros/trigrate.C,
1275 macros/plot.C, macros/plot2.C, macros/MagicHillas.C, macros/CT1Hillas.C,
1276 macros/collarea.C:
1277 - added ProgressBar
1278
1279 * macros/flux.C:
1280 - fixed some coding bugs (redeclaration of Draw, Draw starting with a
1281 capital)
1282
1283 * macros/MagicHillas.C:
1284 - fixed some typos
1285
1286
1287
1288 2002/10/15: Thomas Bretz
1289
1290 * mbase/MContinue.[h,cc]:
1291 - added
1292
1293 * Makefile:
1294 - added some comments
1295
1296 * macros/readMagic.C:
1297 - replaced MHillas by MHillasExt
1298 - print also MC Information
1299
1300 * manalysis/MCerPhotEvt.[h,cc]:
1301 - use MGeomCam::GetPixRatio
1302 - added GetRatio[Min,Max]
1303 - added GetErrorPhot[Min,Max]
1304
1305 * manalysis/MHillas.[h,cc], manalysis/MHillasExt.[h,cc],
1306 manalysis/MHillasSrc.[h,cc]:
1307 - return error codes
1308 - don't display any error message or warning
1309
1310 * manalysis/MHillasCalc.[h,cc], manalysis/MHillasSrcCalc.[h,cc]:
1311 - evaluate error codes returned by MHillas::Calc
1312 - added Postprocess
1313
1314 * manalysis/MMcPedestalCopy.cc:
1315 - removed obsolete comment
1316
1317 * manalysis/MMcPedestalNSBAdd.cc:
1318 - added include MGeomPix
1319
1320 * manalysis/MPedestalCam.[h,cc]:
1321 - moved some stuff from header file to source file
1322 to get rid of some includes in the header file
1323 - adde GetSize
1324 - added GetMean[Min,Max]
1325
1326 * manalysis/MPedestalPix.[h,cc]:
1327 - added Clear
1328 - added IsValid
1329
1330 * mbase/BaseLinkDef.h, mbase/Makefile:
1331 - added MContinue
1332
1333 * mbase/MClone.h:
1334 - added GetObject
1335
1336 * mbase/MEvtLoop.[h,cc]:
1337 - added SetProgressBar II
1338
1339 * mbase/MTask.[h,cc], mbase/MTaskList.[h,cc]:
1340 - enhanced some comments
1341 - print the name of the filter in PrintStatistic
1342 - made the def name and title a static member
1343
1344 * meventdisp/MGCamDisplay.[h,cc]:
1345 - added displays for: Errors, Phot/Err, Levels and Pedestals
1346
1347 * meventdisp/MGEvtDisplay.cc:
1348 - Some simplifications
1349 - introduced AddTab
1350
1351 * mfileio/MCT1ReadAscii.cc:
1352 - added include MPedestalPix
1353
1354 * mgeom/MGeomCam.[h,cc]:
1355 - added GetPixRatio
1356
1357 * mgui/MCamDisplay.[h,cc]:
1358 - added possibilities to display: errors, ratios, levels and pedestals
1359
1360 * mhist/MHHillasSrc.cc:
1361 - some small changes if mmdeg=0
1362
1363 * mhist/MHStarMap.cc:
1364 - anhanced displayed radius from 2/3r to 5/6r
1365
1366 * mmain/MMars.[h,cc]:
1367 - changed layout
1368 - added comments to display
1369
1370 * mmain/MProgressBar.cc:
1371 - added some comments
1372
1373 * manalysis/MImgCleanStd.cc:
1374 - pixels with to many 'used' neighbors are left used
1375
1376
1377 2002/10/14: Abelardo Moralejo
1378
1379 * manalysis/McerPhotCalc.cc, manalysis/MCerPhotCalc2.cc
1380 - Initialized fEnableFix (before, bad pedestal subtraction if
1381 reading camera 0.4 root files)
1382
1383
1384 2002/10/09: Abelardo Moralejo
1385
1386 * mhist/MHMcRate.cc:
1387 - fixed a bug in total rate calculation (results change very little,
1388 only a 0.2 percent at most)
1389
1390
1391 2002/09/16: Thomas Bretz
1392
1393 * mtools/MagicSnake.cc:
1394 - removed some debugging output
1395 - fixed a small bug in the initialization
1396
1397
1398
1399 2002/09/16: Thomas Bretz
1400
1401 * manalysis/MCerPhotPix.cc:
1402 - shortened output
1403
1404 * mbase/MEvtLoop.cc:
1405 - added a better progressbar support, if MReadTree or MReadMarsFile
1406 exists in the Tasklist
1407
1408 * mbase/MTaskList.cc:
1409 - fixed a bug which caused MParList::Reset not to be called anymore
1410 as soon as kCONTINUE was called once.
1411
1412 * mfileio/MReadTree.[h,cc]:
1413 - added AddFiles member function
1414
1415 * mmain/MProgressBar.[h,cc]:
1416 - added as a simple Progress meter for eventloops
1417
1418 * mmain/Makefile, mmain/MainLinkDef.h:
1419 - added MProgressBar
1420
1421 * manalysis/MHillas.cc:
1422 - removed warning in case of no photons. problems with Thomas' files.
1423
1424 * mbase/Makefile:
1425 - added mfileio
1426
1427
1428
1429 2002/09/16: Thomas Bretz
1430
1431 * macros/rootlogon.C:
1432 - added SetMakeSharedLib to make it work correctly on linux
1433
1434 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
1435 - added MEnergyEstParam
1436 - added MMatrixLoop
1437
1438 * manalysis/MEnergyEstParam.[h,cc], manalysis/MMatrixLoop.[h,cc]:
1439 - added
1440
1441 * manalysis/MEnergyEst.h:
1442 - added fImpact provisionally
1443 - changed to 'no-storage'
1444
1445 * manalysis/MHillas.[h,cc], manalysis/MHillasExt.[h,cc],
1446 manalysis/MHillasSrc.[h,cc]:
1447 - added set function to support Thomas Schweitzers Image files
1448
1449 * mbase/MFilter.cc:
1450 - small changes to output
1451
1452 * mbase/MLog.[h,cc]:
1453 - added IsNull to switch off output completely
1454
1455 * mbase/MParList.[h,cc]:
1456 - added Remove function
1457 - added IsOwner function
1458 - changes to SavePrimitive
1459 - kDoNotReset-support
1460
1461 * mbase/MTaskList.cc:
1462 - make sure, that in sub-tasklist the parameterlist isn't reset
1463
1464 * mdata/MDataLinkDef.h, mdata/Makefile:
1465 - added MDataElement
1466 - added mhist-path
1467
1468 * mdata/MDataChain.[h,cc]:
1469 - added support for MDataElement
1470
1471 * mhist/MH3.[h,cc]:
1472 - added enums for log-scale
1473 - set logscale automatic when drawing
1474 - added 'only' option to draw functions
1475 - set colors when 'col' option is given
1476
1477 * mhist/MHHillas.cc:
1478 - better hist range for fCenter
1479
1480 * mhist/MHMatrix.[h,cc]:
1481 - made default name and title a static class member
1482 - changed AddColumn now returning the new comlumn index
1483 - added Fill to fill Matrix from file
1484 - added locking
1485 - added IsValid
1486 - added GetNumRows
1487 - added SetNumRow
1488 - added []-operator
1489 - added GetNumRow
1490
1491 * mhist/MHStarMap.cc:
1492 - fixed some comments
1493
1494 * mbase/MEvtLoop.[h,cc], MParContainer.[h,cc]:
1495 - added support for writing two or more Evtloops into one macro
1496
1497
1498
1499 2002/09/02: Thomas Bretz
1500
1501 * mhist/MHMatrix.[h,cc]:
1502 - added GetIndexdOfSortedColumn
1503 - added SortMatrixByColumn
1504
1505 * mhist/HistIncl.h:
1506 - added TArrayI.h (for MHMatrix.h)
1507
1508
1509
1510 2002/08/19: Thomas Bretz
1511
1512 * mhist/MHillasExt.cc:
1513 - removed a wrong 2 in the calculation of fAsym
1514
1515
1516
1517 2002/08/16: Thomas Bretz
1518
1519 * mhist/MFillH.cc:
1520 - if not title is given create a default title from the names
1521
1522 * mhist/MHHillas.cc, mhist/MHHillasExt.cc:
1523 - use the new MH::Draw[Copy] function
1524 - added names to the histograms in MHHillasExt
1525
1526 * manalysis/MCerPhotPix.h:
1527 - unimportant change
1528
1529 * manalysis/MImgCleanStd.cc:
1530 - added comment
1531
1532 * mhist/MH.[h,cc]:
1533 - added function to draw two histograms in one pad with
1534 a layout of two stat boxes and a legend: Draw[Copy]
1535 - added comments
1536 - added another sanity check in SetBinning(TH1*,TH1*)
1537
1538
1539
1540 2002/08/14: Thomas Bretz
1541
1542 * mbase/MTask.[h,cc], mbase/MTaskList.[h,cc]:
1543 - added second argument to PrintStatistics
1544
1545
1546
1547
1548
1549 2002/08/12: Thomas Bretz
1550
1551 * manalysis/MBlindPixelCalc.[h,cc]:
1552 - fixed a typo in the SetUseCentralPixel
1553 - only use pixels without starlight for interpolation
1554
1555
1556
1557 2002/08/09: Thomas Bretz
1558
1559 * mbase/MIter.[h,cc]:
1560 - added
1561
1562 * mbase/BaseLinkDef.h, mbase/Makefile:
1563 - added MIter
1564
1565 * mdata/MDataChain.cc:
1566 - added sanity check in StreamPrimitive
1567
1568 * mfilter/MF.[h,cc]:
1569 - fixed StreamPrimitive
1570 - don'w stream standard name and title.
1571 - added default constructor
1572
1573 * mfilter/MFDataMeber.cc:
1574 - strip spces from value before returning GetRule
1575
1576 * mfilter/MFilterList.[h,cc]:
1577 - fixed StreamPrimitive
1578 - don't stream standard name and title.
1579
1580
1581
1582 2002/08/08: Thomas Bretz
1583
1584 * manalysis/MHillasSrc.cc:
1585 - use double dist instead of single fDist for calculation
1586
1587 * manalysis/MMultiDimDistCalc.[h,cc]:
1588 - added support for the kernel method
1589 - added stream primitive
1590 - changed version number to 1
1591 - adapted to new MHMatrix (using MDataArray)
1592
1593 * mdata/MDataArray.[h,cc]:
1594 - added
1595
1596 * mdata/DataLinkDef.h, madata/Makefile:
1597 - added MDataArray
1598
1599 * mfileio/MWriteRootFile.cc:
1600 - fixed some bugs in StreamPrimitive
1601 - StreamPrimtive doesn't write the default name/title anymore
1602
1603 * mhist/MHMatrix.[h,cc]:
1604 - replaced the Arrays for the rules by a MDataArray
1605 - implemented StreamPrimitive
1606 - implement the use of the kernel function for num<0
1607 - multiply fM2 by nevts-1
1608 - added sanity check in case of dists[i]<0
1609
1610 * mhist/MHHillas.[h,cc]:
1611 - added fUsedPix, fCorePix
1612 - added fUsedPix, fCorePix to plots
1613 - changed layout of plots
1614 - changed name and title of MakeDefCanvas
1615
1616 * mhist/MHHillasSrc.[h,cc]:
1617 - changed plot of Alpha from fabs(fAlpha) to fAlpha
1618 - changed name and title of MakeDefCanvas
1619
1620 * mhist/MHillasExt.[h,cc]:
1621 - changed layout of plots
1622 - changed name and title of MakeDefCanvas
1623 - made independant of MHillas
1624 - exchanged the usage of the Fill-argument (MHillasExt) and the
1625 stored pointer (MHillasSrc)
1626 - changed the default binning of asym to be symmetric
1627
1628 * mbase/MTask.cc:
1629 - fixed wrong streaming of filter name
1630
1631 * macros/starplot.C:
1632 - added
1633
1634 * macros/dohtml.C:
1635 - added starplot.C
1636
1637 * macros/MagicHillas.C, macros/CT1Hillas.C:
1638 - changed to use new stylish Hillas Histograms
1639
1640 * macros/star.C:
1641 - changed to interpolate pixels around hot spots
1642 - write Sourcs and AntoSource to RunHeaders
1643
1644
1645
1646 2002/08/07: Thomas Bretz
1647
1648 * macros/dohtml.C:
1649 - added missing paths
1650
1651 * manalysis/MBlindPixelCalc.[h,cc]:
1652 - replaced booleans by fFlags
1653 - added StreamPrimitive
1654 - changed version number to 1
1655
1656 * manalysis/MHillasSrcCalc.[h,cc]:
1657 - added correct initializations for the pointers
1658 - made the pointers persistent
1659
1660 * manalysis/MImgCleanStd.cc, manalysis/MSrcPosCam.cc,
1661 mfileio/MWriteRootFile.cc:
1662 - don't stream name and title if not necessary
1663
1664 * mbase/MEvtLoop.[h,cc]:
1665 - added some output
1666 - added print function
1667 - added gListOfPrimitives to delete BIT(15) of streamed containers
1668 - Added default argument for Read and Write
1669
1670 * mbase/MParContainer.cc:
1671 - added usage of gListOfPrimitives
1672
1673 * mbase/MParList.cc, mbase/MTaskList.cc, mhist/MBinning.cc:
1674 - fixed a bug when only the title is different from the default
1675
1676 * mhist/MHHillas.cc:
1677 - fixed the wrong usage of ApplyBinning for the 2D-Hist fCenter
1678
1679
1680
1681 2002/08/06: Thomas Bretz
1682
1683 * mhist/MHHillas.cc:
1684 - fixed setting of binning for fCamera
1685
1686 * mhist/MH.cc, mhist/MBinning.cc:
1687 - added sanity check in ApplyBinning and Apply
1688
1689 * mbase/MFilterList.[h,cc]:
1690 - moved to mfilter
1691
1692 * mbase/Makefile, mbase/BaseLinkDef.h,
1693 mfilter/Makefile, mfilter/FilterLinkDef.h:
1694 - changed accordingly
1695
1696
1697
1698 2002/08/05: Thomas Bretz
1699
1700 * mbase/MEvtLoop.[h,cc]:
1701 - added a warning in case of duplicate names in the lists
1702 - added orresponding member functions (HasDuplicateNames)
1703 - added some sanity checks, checking for an open file
1704
1705 * mbase/MFilter.[h,cc]:
1706 - added GetRule virtual member function
1707
1708 * mbase/MFilterList.[h,cc]:
1709 - added GetRule
1710 - added StreamPrimitive
1711 - added name and title to the constructor
1712 - set version number to 1
1713
1714 * mbase/MTask.h:
1715 - removed const qualifiers from fFilter (seems, that the root io
1716 doesn't like it)
1717
1718 * mdata/MDataChain.[h,cc], mdata/MDataList.[h,cc], mdata/MDataMember.[h,cc],
1719 mdata/MDataValue.[h,cc]:
1720 - set class version to 1
1721 - added default constructor if missing
1722 - added fDataMember to MDataMember (formaly fName isn't stored)
1723
1724 * mfilter/MF.[h,cc], mfilter/MFAlpha.[h,cc], mfilter/MFDataMember.[h,cc],
1725 mfilter/MFParticleId.[h,cc], mfilter/MFTriggerLvl1.[h,cc]:
1726 - added StreamPrimitive
1727 - removed const qualifiers from data members
1728 - added the "!" to the data member storing the result
1729 - added GetRule
1730
1731 * mhist/MFillH.[h,cc]:
1732 - fixed some small bugs in StreamPrimitive
1733
1734 * mhist/MH3.[h,cc]:
1735 - added the missing const-qualifier of StreamPrimitive
1736
1737 * mbase/MParContainer.[h,cc]:
1738 - implemented setting a unique id in SavePrimitive
1739 - imnplemented GetUniqueID
1740
1741 * manalysis/MHillasSrcCalc.cc, manalysis/MImgCleanStd.cc,
1742 manalysis/MSrcPosCam.cc, mbase/MEvtLoop.cc, mbase/MParList.cc,
1743 mbase/MTaskList.cc, mfileio/MReadTree.cc, mfileio/MWriteRootFile.cc,
1744 mhist/MF.cc, mfilter/MFAlpha.cc, mfilter/MFDataMember.cc,
1745 mfilter/MFParticleId.cc, mfilter/MFTriggerLvl1.cc, mhist/MBinning.cc,
1746 mhist/MFillH.cc, mhist/MH3.cc:
1747 - changed the 'instance' name to the UniqueName
1748 - in some files: implemented a static constant name and title, which
1749 is used to descide whether the name and/or title should be stream
1750 in the constructor-call in StreamPrimitive
1751
1752
1753
1754 2002/08/06: Wolfgang Wittek
1755
1756 * mbase/MTask.cc:
1757 - redefinition of default argument in MTask::SavePrimitive removed
1758
1759
1760
1761 2002/08/02: Thomas Bretz
1762
1763 * manalysis/MHillasSrcCalc.[h,cc], manalysis/MImgCleanStd.cc,
1764 manalysis/MSrcPosCam.cc, mbase/MParContainer.[h,cc],
1765 mfileio/MReadTree.cc, mfileio/MWriteRootFile.cc, mhist/MBinning.cc:
1766 - added comments
1767
1768 * manalysis/MSrcPosCam.cc, mfileio/MWriteRootFile.cc, mhist/MFillH.cc:
1769 - fixed a missing " in SavePrimitive
1770
1771 * mbase/MTask.[h,cc], mhist/MBinning.[h,cc], mhist/MH3.[h,cc]:
1772 - implemented SavePrimitive
1773
1774 * mbase/MEvtLoop.[h,cc]:
1775 - added MakeMacro
1776 - added Read and Write
1777
1778 * mbase/MParContainer.[h,cc], mbase/MParList.[h,cc],
1779 mbase/MTaskList.[h,cc]:
1780 - added GetNames, SetNames virtual functions
1781
1782 * mdata/MData.[h,cc], mdata/MDataChain.[h,cc], mdata/MDataList.[h,cc],
1783 mdata/MDataValue.[h,cc], mdata/MDataMember.[h,cc]:
1784 - implemented GetRule
1785 - move Code from Print to GetRule
1786 - removed Print
1787
1788 * mhist/MH3.[h,cc]:
1789 - implemented default constructor
1790
1791 * manalysis/MHillasSrcCalc.[h,cc], manalysis/MImgCleanStd.[h,cc],
1792 manalysis/MSrcPosCam.[h,cc], mbase/MParList.[h,cc], mbase/MTask.h,
1793 mbase/MTaskList.[h,cc], mfileio/MReadTree.[h,cc],
1794 mfileio/MWriteRootFile.[h,cc], mhist/MBinning.[h,cc],
1795 mhist/MFillH.[h,cc], mhist/MH3.[h,cc]:
1796 - renamed SavePrimitive to StreamPrimitive
1797 - implemented more accurate streaming
1798 - removed some "//!" from the data members
1799
1800 * mbase/MParContainer.[h,cc]:
1801 - new virtual function StreamPrimitive
1802 - implemented flag whether this container has been streamed already
1803
1804 * mbase/MTask.[h,cc]:
1805 - corrected streaming of primitive to stream filters correctly
1806 - increased version number to 1
1807
1808 * mhist/MBinning.[h,cc]:
1809 - move SetEdges and SetEdgesLog to the source file
1810 - implemented a flag telling something about the type of the binning
1811
1812
1813
1814 2002/08/01: Thomas Bretz
1815
1816 * manalysis/MHillasSrcCalc.[h,cc], manalysis/MImgCleanStd.[h,cc],
1817 manalysis/MSrcPosCam.[h,cc], mbase/MEvtLoop.[h,cc],
1818 mbase/MParContainer.[h,cc], mbase/MParList.[h,cc],
1819 mbase/MTaskList.[h,cc], mfileio/MReadTree.[h,cc],
1820 mfileio/MWriteRootFile.[h,cc], mhist/MFillH.[h,cc]:
1821 - added SavePrimitive
1822
1823 * mbase/MEvtLoop.h, mbase/MParList.h, mbase/MTaskList.h,
1824 mfileio/MReadMarsFile.h, mfileio/MReadTree.h,
1825 mfileio/MWriteRootFile.h, mhist/MFillH.h:
1826 - changed from ClassVersion 0 to ClassVersion 1
1827
1828 * mfileio/FileIOLinkDef.h:
1829 - added MChain
1830
1831 * mfileio/MReadMarsFile.cc, mfileio/MReadTree.cc,
1832 mfileio/MWriteRootFile.cc, mhist/MFillH.cc:
1833 - added default constructor
1834
1835 * mfileio/MReadTree.cc:
1836 - moved MChain to its own file
1837
1838 * mfileio/MWriteRootFile.cc:
1839 - added default constructor to MRootFileBranch
1840 - changed Version number from 0 to 1
1841
1842 * mfileio/Makefile, mfileio/FileIOLinkDef.h:
1843 - MChain added
1844
1845 * mfileio/MChain.[h,cc]:
1846 - added (from MReadTree.cc)
1847
1848 * manalysis/MHillas.[h,cc]:
1849 - don't draw ellipse if values are invalid
1850 - add used and core pixels to Print-output
1851
1852 * manalysis/MHillasExt.cc:
1853 - reordered some comments
1854
1855 * mdata/MDataChain.[h,cc]:
1856 - fixed a bug causing usage of '-' sometime not to work
1857 - added handling of '+' sign
1858
1859 * mfileio/MReadTree.h:
1860 - changed some comments
1861
1862 * mhist/MBinning.[h,cc]:
1863 - added Apply
1864
1865 * mhist/MHHillas.[h,cc], mhist/MHHillasSrc.[h,cc],
1866 mhist/MHHillasExt.[h,cc]:
1867 - added default binning (usefull for the Magic Camera)
1868 - some changes to the layout
1869 - added support for the sign in MHHillasExt
1870
1871 * manalysis/MBlindPixelCalc.[h,cc]:
1872 - added the possibility to use the interpolation of the
1873 surrounding pixels
1874 - clean the array with the blind pixel IDs at any ReInit
1875
1876 * manalysis/MBlindPixels.h:
1877 - IsBlind now checks also for the validity of the array
1878
1879 * manalysis/MCerPhotPix.h:
1880 - added Set-function
1881
1882 * manalysis/MHillas.cc:
1883 - Don't ouput a warning if fSize==0 or fNumUsedPixels<0
1884 (happens too often)
1885
1886 * manalysis/MCameraSmooth.[h,cc]:
1887 - added
1888
1889 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1890 - added MCameraSmooth
1891
1892
1893
1894 2002/07/31: Thomas Bretz
1895
1896 * mgeom/MGeomPix.[h,cc]:
1897 - added bits to flag pixel sin the two most outer rings
1898 - added IsInOutermostRing and IsInOuterRing member function
1899 - added CheckOuterRing mebmber function
1900 - set the bit for the most outer ring in the member function to
1901 initialize the next neighbors.
1902
1903 * mgeom/MGeomCam.[h,cc]:
1904 - added InitOuterRing to initialize the bits for the secendmost
1905 outer ring
1906
1907 * mgeom/MGeomCamMagic.cc:
1908 - Call InitOuterRing
1909
1910 * manalysis/MHillasExt.[h,cc]:
1911 - removed AsciiRead member function
1912 - reset fConc/fConc1 to -1 instead of 0
1913 - replaced float by Float_t
1914 - replaced Float_t for m3x/y, dzx and dzy by Double_t
1915 - replaced maxpixx and maxpixy by maxpixid
1916 - added somew new calculations (still in comments)
1917 - scaled nphot by the ratio of the area of the current pixel to
1918 the pixel with id zero to make a fair comparison in the maxpix
1919 findinng
1920
1921 * manalysis/MSrcPosCam.[h,cc]:
1922 - removed AsciiRead/Write member function
1923
1924 * manalysis/MImgCleanStd.cc:
1925 - changed ispixused array size from max to max+1
1926
1927 * macros/MagicHillas.C:
1928 - use the default binning of the histograms
1929
1930 * mhist/MH.[h,cc]:
1931 - changed argument of SetBinning from TArrayD* to TArrayD&
1932 - added ScaleArray
1933 - added ScaleAxis
1934 - proved that ScaleAxis is really working
1935 - Added ApplyBinning
1936
1937 * mhist/MHHillas.[h,cc], mhist/MHHillasSrc.[h,cc]:
1938 - corrected the default binning
1939 - take use of MH::ApplyBinning
1940 - don't stop execution if no binning was found (take default)
1941 - made sure, that rescaling of the axis is working properly
1942
1943
1944
1945 2002/07/29: Thomas Bretz
1946
1947 * manalysis/MImgCleanStd.[h,cc]:
1948 - changed ispixused from static size to dynamicly allocated size
1949 (thanks to Markus Gaug)
1950
1951
1952
1953 2002/07/29: Thomas Bretz
1954
1955 * mhist/MH.[h,cc]:
1956 - added FindGoodLimits (taken from TTreePlayer)
1957 - added GetMinimumGT
1958
1959 * mbase/MAGIC.h:
1960 - removed kPI (redefinition in TVector2.h)
1961
1962 * mbase/BaseLinkDef.h:
1963 - removed kPI (redefinition in TVector2.h)
1964
1965
1966
1967 2002/07/26: Abelardo Moralejo
1968
1969 * mhist/MH.cc
1970 - Fix: removed default arguments of ScaleAxis(...) (did not
1971 compile on alphas).
1972
1973
1974
1975 2002/07/25: Abelardo Moralejo
1976
1977 * manalysis/MCerPhotCalc2.[h,cc]:
1978 - Changed fWeight into a TArrayF to make the class usable for
1979 any number of FADC slices.
1980 - added procedure SetDefaultWeights for initialization.
1981
1982 * macros/MagicHillas.C:
1983 - changed accordingly
1984
1985
1986
1987 2002/07/25: Wolfgang Wittek, Thomas Bretz
1988
1989 * mhist/MHHillas.[h,cc], mhist/MHHillasSrc.[h,cc]:
1990 - added some more histograms showing the new parameters.
1991
1992 * mhist/MH.[h,cc]:
1993 - added ScaleAxis member functions
1994
1995
1996
1997 2002/07/25: Thomas Bretz
1998
1999 * mtools, mtools/Makefile, mtools/ToolsLinkDef.h, mtools/ToolsIncl.h:
2000 - added
2001
2002 * mgeom, mgeom/Makefile, mgeom/GeomLinkDef.h, mgeom/GeomIncl.h:
2003 - added
2004
2005 * Makefile:
2006 - mtools added
2007 - mgeom added
2008
2009 * mtools/MagicCivilization.[h,cc], mtools/MagicDomino.[h,cc],
2010 mtools/MagicShow.[h,cc], mtools/MagicSnake.[h,cc]:
2011 - added
2012
2013 * mgui/MineSweeper.[h,cc]:
2014 - moved to mtools
2015
2016 * mgui/MGeom*.[h,cc]:
2017 - moved to mgeom
2018
2019 * mgeom/MGeomCamMagic.cc:
2020 - corrected 48(!) wrong entries in the Next Neighbor table
2021
2022 * mmain/Makefile, eventdisp/Makefile:
2023 - added mgeom
2024
2025 * mgui/Makefile, mgui/LinkDef.h, mhist/Makefile, manalysis/Makefile:
2026 - removed MGeom* and MineSweeper
2027
2028 * macros/rootlogon.C:
2029 - added new include paths
2030
2031 * manalysis/MCerPhotEvt.cc, mgeom/MGeomCam.cc:
2032 - removed include of MHexagon
2033
2034
2035
2036 2002/07/23: Thomas Bretz
2037
2038 * mgui/MineSweeper.cc, mgui/MCamDisplay.cc:
2039 - fixed a bug which could caused the destructor of the created canvas
2040 not to be called if the object was deleted.
2041
2042 * mgui/MCamDisplay.h:
2043 - some reordering
2044
2045 * mgui/MHexagon.cc:
2046 - return the correct distance to primitive
2047 - do a sanity check in DistancetoPrimitive
2048
2049 * mhist/HistLinkDef.h:
2050 - added missing classes
2051
2052
2053
2054 2002/07/23: Wolfgang Wittek, Thomas Bretz
2055
2056 * manalysis/MHillas.cc, manalysis/MHillasSrc.cc:
2057 - replaced algorithms by the ones from the corresponding TDAS note
2058 - made results of calculations (hopefully) more accurate
2059 - added some output warnings and sanity checks
2060 - changed the default parameters in the Reset function
2061
2062 * manalysis/MHillasSrc.[h,cc]:
2063 - added fCosDeltaAlpha
2064 - made Calc returning a Bool_t
2065
2066 * manalysis/MHillasSrcCalc.cc:
2067 - make use of the return value of MHillasSrc::Calc
2068
2069
2070
2071 2002/07/22: Abelardo Moralejo
2072
2073 * manalysis/MCerPhotCalc2.[h,cc]:
2074 -added procedure SetWeights.
2075
2076 * macros/MagicHillas.C:
2077 -added example on how to use MCerPhotCalc2
2078
2079
2080
2081 2002/07/22: Thomas Bretz
2082
2083 * mgui/MCamDisplay.cc:
2084 - removed some unecessary includes
2085 - replaced *fPixels by *this
2086
2087 * mgui/MineSweeper.[h,cc]:
2088 - added more comments
2089 - removed some unnecessary includes
2090 - replaced enum constants for colors by the root ones
2091 - added gInterpreter->DeleteGlobal(this)
2092 - removed the deletion of the self-allocated fDrawingPad
2093 - added kUserBits, replacing kBitMask
2094
2095
2096
2097 2002/07/16: Thomas Bretz
2098
2099 * macros/plot.C, macros/plot2.C, macros/star.C, macros/comprob.C:
2100 - updated the comments in the macros
2101
2102 * mgui/MHexagon.cc:
2103 - added a sanity check in DistanceToPrimitive
2104
2105 * mgui/MCamDisplay.[h,cc]:
2106 - added DistanceToPrimitive
2107 - declared virtual functions as virtual (easier to read in the Dox)
2108
2109 * mfileio/MWriteAsciiFile.[h,cc]:
2110 - renamed AddContainer and AddRule to AddColumn and AddColumns
2111
2112 * macros/MagicHillas.C:
2113 - adopted to new names of MWriteAsciiFile member functions
2114
2115
2116
2117 2002/07/16: Wolfgang Wittek
2118
2119 * new
2120 ---
2121 mhist : MHEffOnTime (replaces MHEffOnTimeTime and
2122 MHEffOnTimeTheta)
2123 MHThetabarTheta (forgotten to comit last time)
2124 MHThetabarTime (forgotten to comit last time)
2125 MHGamma (makes the subtraction SRC-ASRC and
2126 counts the events with alpha<alpha0)
2127
2128 * modified
2129 --------
2130 Mars : Makefile.conf.general
2131 Changelog
2132
2133
2134 mhist : Makefile
2135 HistLinkDef.h
2136 MHFlux (performs the flux calculation)
2137
2138 MHAlphaEnergyTheta (replace BinningAlpha by BinningAlphaFlux)
2139 MHAlphaEnergyTime (replace BinningAlpha by BinningAlphaFlux)
2140
2141 macros : flux.C (replace some code by MHGamma,
2142 replace MHEffOnTimeTime and MHEffOnTimeTheta
2143 by MHEffOnTime)
2144
2145 * removed
2146 -------
2147 mhist : MHEffOnTimeTime
2148 MHEffOnTimeTheta
2149
2150
2151
2152 2002/07/15: Abelardo Moralejo
2153
2154 * manalysis/MCerPhotCalc2.[h,cc]
2155 - converted fWeight into a static variable.
2156
2157
2158
2159 2002/07/11: Thomas Bretz
2160
2161 * mgui/MGeomCamCT1.cc:
2162 - fixed a bug in the NN-Table (127 doesn't exist, 126 missing)
2163
2164 * mgui/MCamDisplay.cc:
2165 - changed some gPad to fDrawingPad
2166 - added kNoContextMenu and kCannotPick flags for the Primitives
2167 - scaled the size of the pixel numbers text with the pixel radius
2168
2169 * mgui/MineSweeper.[h,cc]:
2170 - added
2171
2172 * mgui/Makefile, mgui/GuiLinkDef.h:
2173 - added MineSweeper
2174
2175 * Makefile:
2176 - added missing mfileio
2177
2178
2179
2180 2002/07/11: Abelardo Moralejo
2181
2182 * manalysis/MCerPhotCalc2.[h,cc]
2183 - new class to compute nphe weighting FADC slices.
2184
2185
2186
2187 2002/07/10: Oscar Blanch
2188
2189 * manalysis/MCerPhotAnal.[h,cc]
2190 - new class to compute nphe. First version.
2191
2192
2193
2194 2002/07/10: Abelardo Moralejo
2195
2196 * macros/MagicHillas.C:
2197 -added MMcEvt container to hillas.root output
2198
2199
2200
2201 2002/07/10: Thomas Bretz
2202
2203 * mmain/Makefile:
2204 - added -I../mfileio
2205
2206 * manalysis/MCerPhotPix.h:
2207 - renamed IsCorePixel to IsPixelCore
2208 - renamed SetCorePixel to SetPixelCore
2209
2210 * manalysis/MHillas.[h,cc]:
2211 - added fNumCorePixel
2212 - added fNumUsedPixel
2213
2214 * manalysis/MImgCleanStd.cc, manalysis/MCerPhotEvt.cc:
2215 - renamed IsCorePixel and SetCorePixel
2216
2217
2218
2219 2002/07/08: Thomas Bretz
2220
2221 * macros/rootlogon.C:
2222 - added include pathes for ACLIC
2223
2224 * mfileio, mfileio/FileIOLinkDef.h, mfileio/FileIOIncl.h,
2225 mfileio/Makefile:
2226 - new directory
2227
2228 * mbase/MWriteAsciiFile.[h,cc], mbase/MWriteRootFile.[h,cc],
2229 mbase/MReadTree.[h,cc], mbase/MReadMarsFile.[h,cc],
2230 manalysis/MCT1ReadAscii.[h,cc]:
2231 - moved to mfileio
2232
2233 * mbase/Makefile, mbase/BaseLinkDef.h, mbase/BaseIncl.h,
2234 manalysis/Makefile, manalysis/AnalysisLinkDef.h,
2235 manalysis/AnalysisIncl.h, meventdisp/Makefile:
2236 - changed accordingly
2237
2238 * meventdisp/MGCamDisplay.cc:
2239 - cd to right canvas before drawing camera display
2240
2241 * meventdisp/MGEvtDisplay.[h,cc]:
2242 - added the "Geometry"-Tab
2243 - added MC informations to gui
2244
2245 * mgui/MCamDisplay.[h,cc]:
2246 - added DrawPixelNumbers
2247 - added buttons to change the palette online
2248
2249 * mgui/MHexagon.h:
2250 - added Getter functions
2251
2252 * macros/MagicHillas.C:
2253 - added read.DisableAutoScheme()
2254
2255 * mhist/MH.[h,cc]:
2256 - changed Fill to be non abstract anymore
2257
2258
2259
2260 2002/07/04: Abelardo Moralejo
2261
2262 * macros/trigrate.C:
2263 - Introduced some style improvements suggested by T. Bretz.
2264
2265
2266
2267 2002/07/04: Abelardo Moralejo
2268
2269 * mmontecarlo/MMcTriggerRateCalc.h,cc:
2270 - Now the dimension of fTrigger is set dynamically, to allow
2271 the processing of files with an arbitrarily large number of
2272 trigger conditions inside.
2273
2274 * macros/trigrate.C:
2275 - Adapted the macro to changes above, and added a third argument:
2276 the name of a file containing pure NSB events from which the
2277 accidental trigger rate is calculated. Previously, this had to
2278 be introduced in the macro by hand by the user.
2279
2280
2281
2282 2002/06/14: Thomas Bretz
2283
2284 * mhist/MBinning.cc:
2285 - Initialize the binning with 10 edges from 0 to 1
2286
2287
2288
2289 2002/06/13: Thomas Bretz
2290
2291 * mdata/MData.cc:
2292 - changed ostream.h to ofstream.h to make it compile on alpha
2293
2294
2295
2296 2002/06/10: Thomas Bretz
2297
2298 * mbase/MReadMarsFile.cc:
2299 - changed name of fRun to ReadRunHeaders
2300
2301 * mbase/MReadTree.cc:
2302 - changed output to show name of class
2303
2304 * macros/plot.C:
2305 - added
2306
2307 * macros/plot2.C:
2308 - added
2309
2310 * manalysis/MHillas.cc:
2311 - changed atan2 to atan for fDelta
2312
2313 * mbase/MAGIC.h, mbase/BaseLinkDef.h:
2314 - changed definitions for Particle Id to enum
2315
2316 * mbase/MGList.cc:
2317 - IsA()->InheritsFrom() replaced with InheritsFrom()
2318
2319 * mbase/MWriteAsciiFile.cc:
2320 - IsA()->InheritsFrom() replaced with InheritsFrom()
2321 - removed some debug outputs
2322
2323 * mbase/MDataChain.[h,cc]:
2324 - implemented sign '-'
2325
2326 * mhist/MH.h:
2327 - changed default canvas size to 580x435
2328
2329 * mhist/MHHadroness.cc:
2330 - added some more output to Print
2331
2332 * mhist/MHMatrix.h:
2333 - changed some i,j to x,y
2334 - removed fabs from distance calculation
2335 - added sqrt to distance calculation
2336
2337 * mmc/MMcEvt.cxx:
2338 - changed output of Print
2339
2340
2341
2342 2002/06/06: Thomas Bretz
2343
2344 * manalysis/MHillasSrc.cc:
2345 - changed atan2 to atan for fAlpha
2346
2347
2348
2349 2002/06/05: Thomas Bretz
2350
2351 * mbase/MWriteAsciiFile.[h,cc]:
2352 - changed the code completely to support rules (data chains), too.
2353 the interface stayed the same.
2354
2355 * mdata/MDataChain.cc, mhist/MHMatrix.cc:
2356 - added math.h for alpha compilers
2357
2358 * mbase/MParContainer.h:
2359 - changes IsReadyToSave to const
2360
2361 * mdata/MData.[h,cc]:
2362 - added AsciiWrite
2363
2364 * mdata/MDataChain.[h,cc], mdata/MDataList.[h,cc], mdata/MDataValue.h:
2365 - added IsReadyToSave
2366
2367 * mdata/MDataMember.[h,cc]:
2368 - added a new constructor
2369 - added IsReadyToSave
2370
2371
2372
2373 2002/06/04: Thomas Bretz
2374
2375 * mhist/MHCompProb.[h,cc]:
2376 - added
2377
2378 * mhist/MHMatrix.cc:
2379 - corrected some bugs in the algorithm to calculate the distance
2380
2381 * mhist/Makefile:
2382 - added -I../mmc
2383
2384 * mbase/Makefile:
2385 - added -I../mdata
2386
2387 * mhist/MHHadroness.cc:
2388 - some changes to the layout of the drawn histograms
2389
2390
2391
2392 2002/06/03: Thomas Bretz
2393
2394 * mhist/MHCompProb.[h,cc]:
2395 - added
2396
2397 * mhist/MHHadroness.[h,cc]:
2398 - added
2399
2400 * mhist/HistLinkDef.h, mhist/Makefile:
2401 - added MHCompProb
2402 - added MHHadroness
2403
2404 * mhist/MFillH.cc:
2405 - added a info-output
2406
2407 * mhist/MH3.cc:
2408 - excluded temporary profiles from directory
2409
2410 * mhist/MHMatrix.[h,cc]:
2411 - added code to calculate multi-dimensional distances
2412 - added comments
2413
2414 * mbase/MAGIC.h:
2415 - changed kGAMMA to 1
2416
2417 * mbase/MParList.[h,cc]:
2418 - added Replace-function
2419
2420 * mbase/MReadMarsFile.[h,cc]:
2421 - added correct seeking for the run headers
2422
2423 * mbase/MReadTree.[h,cc]:
2424 - added GetFileIndex()
2425
2426 * mbase/MTaskList.cc:
2427 - changed fTasksProcess.Delete() to fTasksProcess.Clear()
2428
2429 * mbase/MWriteAsciiFile.[h,cc]:
2430 - added some code for future usage (in comments)
2431
2432 * mbase/MLogo.[h,cc]:
2433 - added (not in use)
2434
2435 * mfilter/MFParticleId.[h,cc]:
2436 - added
2437
2438 * mfilter/Makefile, mfilter/FilterLinkDef.h:
2439 - added MFParticleId
2440
2441 * manalysis/MHadroness.[h,cc]:
2442 - added
2443
2444 * manalysis/MCompProbCalc.[h,cc]:
2445 - added
2446
2447 * manalysis/MMultiDimDistCalc.[h,cc]:
2448 - added
2449
2450 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
2451 - added MHadroness
2452 - added MCompProbCalc
2453 - added MMultiDimDistCalc
2454
2455 * manalysis/Makefile:
2456 - added ../mdata
2457 - added ../mhist
2458
2459 * macros/star.C:
2460 - added
2461
2462 * macros/comprob.C:
2463 - added
2464
2465 * macros/multidimdist.C:
2466 - added
2467
2468 * macros/dohtml.C:
2469 - added star.C
2470 - added comprob.C
2471 - added multidimdist.C
2472
2473 * mdata/MData.h:
2474 - added ()-operator
2475
2476 * mdata/MDataList.cc:
2477 - removed 'all' modifier in Print-statement
2478
2479 * mdata/MDataChain.[h,cc]:
2480 - added default constructor
2481
2482 * mdata/MReadTree.cc:
2483 - fixed a root bug for root versions<3.03/00 (the open file in
2484 the TChain was not deleted (closed))
2485
2486 * mbase/MReadMarsFile.[h,cc]:
2487 - store parlist instead of tasklist
2488 - check for run types between files
2489 - check for used reflector version (because of a bug in the program)
2490
2491 * mmc/MMcRunheader.hxx:
2492 - added GetReflVersion()
2493
2494 * mmontecarlo/MMcTriggerRateCalc.cc:
2495 - changed particle Id numbers to predefined constants
2496
2497
2498
2499 2002/05/29: Thomas Bretz
2500
2501 * mhist/MHMatrix.[h,cc]:
2502 - added
2503
2504 * mhist/HistLinkDef.h, mhist/Makefile
2505 - added MHMatrix
2506
2507 * mhist/MH.h:
2508 - added Finalize-function prototype to be called at the end of
2509 the eventloop
2510
2511 * mhist/MFillH.cc:
2512 - added call to Finalize-function to in PostProcess
2513
2514 * mhist/MH3.cc:
2515 - removed old includes
2516
2517 * mhist/MDataChain.cc:
2518 - fixed a harmfull bug in the constructor. fOperatorType wasn't
2519 correctly initialized
2520
2521 * mhist/MDataMember.cc:
2522 - added some output in case of failures
2523
2524 * mgui/MGeomCam.[h,cc]:
2525 - renamed fMm2Deg to fConvMm2Deg to be consistent with the Getter
2526 function name
2527
2528
2529
2530 2002/05/13: Thomas Bretz
2531
2532 * mbase/MReadTree.cc:
2533 - changed the Notify-workaround from GetEntry to LoadTree.
2534
2535 * mfilter/MFDataMember.[h,cc]:
2536 - changed class to use MDataMember instead of a direct access to
2537 TMethodCall
2538
2539 * mfilter/Makefile:
2540 - added path to mdata
2541
2542
2543
2544 2002/05/06: Thomas Bretz
2545
2546 * mbase/MReadMarsFile.cc, mbase/MReadTree.cc, mbase/MTaskList.cc:
2547 - implemented usage of the return value of the Notofy function
2548
2549 * mdata/MDataChain.[h,cc]:
2550 - implemented single-argument operators (like abs or exp)
2551
2552
2553
2554 2002/05/03: Thomas Bretz
2555
2556 * mars.cc:
2557 - changed version to 0.8
2558 - added logo stuff
2559
2560 * merpp.cc:
2561 - changed usage-output
2562
2563 * mgui/MCamDisplay.cc, mgui/MGeomCam.cc, mgui/MGeomCamCT1.cc,
2564 mgui/MGeomCamMagic.cc, mgui/MHexagon.cc, mhist/MBinning.cc,
2565 mhist/MFillH.cc, mhist/MH.cc, mhist/MHAlphaEnergyTheta.cc,
2566 mhist/MHAlphaEnergyTime.cc, mhist/MHEffOnTimeTheta.cc,
2567 mhist/MHEffOnTimeTime.cc, mhist/MHEnergyTheta.cc, MHEnergyTime.cc,
2568 mhist/MHMcCollectionArea.cc, mhist/MHStarMap.cc, mmain/MMars.cc,
2569 mmontecarlo/MMcCollectionAreaCalc.cc
2570 - changed mail address
2571 - added missing copyright notices
2572 - added missing class description
2573
2574 * mbase/MWriteRootFile.cc, mbase/MWriteAsciiFile.cc:
2575 - added AddToBranch call to AddContainer(const char*, const char*)
2576
2577
2578
2579 2002/04/30: Thomas Bretz
2580
2581 * macros/MagicHillas.C:
2582 - made eventloop infinite
2583
2584 * macros/tar.C:
2585 - implemented some sanity checks (existing files)
2586
2587 * mgui/MCamDisplay.[h,cc]:
2588 - changed to use DeepSea palette in root versions newer than 3.01/05
2589 - fixed a bug which caused the destructor to do strange thing
2590 (the uncloned fGeomCam was deleted)
2591 - implemented a more accurate deletion of the objects in the
2592 TClonesArrays by using TClonesArray::Delete
2593 - Implemented deletion of automatically created TCanvas
2594 - Implemented a sanity check in Draw and DrawPhotNum
2595
2596 * macros/readCT1.C, macros/readMagic.C:
2597 - changed to Handling of the gui and keyboard input
2598 - implemented the filename as function argument
2599
2600 * manalysis/MCT1ReadAscii.cc:
2601 - Expanded filename to support filnames containing '~'
2602
2603 * mhist/MH3.h:
2604 - removed 'const' to make 0.7 root 3.01/06 compatible
2605
2606 * mdata/MDataMember.cc, mdata/MDataValue.cc, mdata/MDataChain.cc:
2607 - removed a 'redefinition of default argument'
2608
2609 * mdata/MFDataMember.cc:
2610 - fixed a bug in the process function (second switch was never reached)
2611
2612
2613
2614 2002/04/29: Thomas Bretz
2615
2616 * macros/tar.C:
2617 - added
2618
2619 * Makefile:
2620 - changed "make tar" to use macros/tar.C and root
2621
2622
2623
2624 2002/04/29: Wolfgang Wittek
2625
2626 * mhist/Makefile, mhist/HistLinkDef.h
2627 - MHThetabarTheta and MHThetabarTime were added
2628
2629 * mhist/MHThetabarTheta.[h,cc], mhist/MHThetabarTime.[h,cc]:
2630 - added
2631
2632 * mhist/MHMcEnergyMigration.[h,cc]:
2633 - added
2634
2635
2636
2637 2002/04/27: Oscar Blanch
2638
2639 * mmc/MMcRunHedaer.cxx, mmc/MMcTrig.cxx, mmc/MMcTrigHeader:
2640 - description of variables that have been introduced in the second
2641 version of this Containers.
2642
2643
2644
2645 2002/04/26: Thomas Bretz
2646
2647 * mhist/MHFadcCam.cc:
2648 - start numbering of pixels with 1
2649
2650 * mhist/MHFadcPix.[h,cc]:
2651 - overloaded clone to get rid of the histograms in any directory
2652 - removed some unnecessary StrDup calls
2653 - changed binning (Thanks to Abelardo)
2654
2655 * mdata/MData.[h,cc]:
2656 - documentation added
2657 - implemented a new abstract member function: IsValid
2658
2659 * mdata/MDataChain.cc, mdata/MDataList.cc:
2660 - changed logging output
2661 - documentation added
2662
2663 * mdata/MDataList.h, mdata/MDataMember.h, mdata/MDataValue.h:
2664 - implemented IsValid
2665
2666 * mdata/MDataMember.cc:
2667 - Don't preprocess if fCall is already available
2668 - documentation added
2669
2670 * mdata/MDataValue.cc:
2671 - documentation added
2672
2673 * mhist/MHMcDifRate.h, mhist/MHMcEfficiency.h,
2674 mhist/MHMcEfficiencyEnergy.h, mhist/MHMcEfficiencyImpact.h,
2675 mhist/MHMcEnergyImpact.h:
2676 - corrected class description
2677
2678 * mbase/MParList.cc:
2679 - fixed a bug in CreateObjList
2680
2681
2682
2683 2002/04/25: Thomas Bretz
2684
2685 * mmontecarlo/MMcCollectionAreaCalc.[h,cc]:
2686 - counts now the number of simulated showers
2687 - implemented some sanity checks (corsika version, etc)
2688
2689 * mhist/MMcCollectionArea.[h,cc]:
2690 - added a first implementation of a calculation using only triggered
2691 events
2692
2693 * mhist/MH.[h,cc]:
2694 - changed the first argument in SetBinning (according to the number
2695 of axis) to TH2 or TH3
2696
2697 * mhist/MH2.cc:
2698 - changed the first argument in SetBinning (according to the number
2699 of axis) to TH2 or TH3
2700
2701 * macros/collarea.C:
2702 - replaces MReadTree by MReadMarsFile
2703
2704 * mmc/MMcRunHeader.hxx:
2705 - added GetAllEvtsTriggered
2706
2707
2708
2709 2002/04/24: Thomas Bretz
2710
2711 * mbase/MReadTree.cc:
2712 - made use of TBranch::GetClassName root version dependant
2713
2714 * manalysis/MCerPhotCalc.[h,cc]:
2715 - added a fix (ped.mean - 0.5) for files from camera with version <= 40
2716
2717 * mmc/MMcRunHeader.hxx:
2718 - added some Getter functions
2719
2720 * mdata/MDataChain.cc:
2721 - use rule as a title if no title ios given
2722
2723 * mhist/MH3.[h,cc]:
2724 - added usage of Data-Chains
2725 - added a profiling option to the draw functions
2726 - use the title (rule) of the data-chain as axis title
2727
2728 * mhist/Makefile:
2729 - added mdata-path
2730
2731 * mbase/MParContainer.h:
2732 - changed some output in GetterFunction
2733
2734
2735
2736 2002/04/24: Wolfgang Wittek
2737
2738 * Work was done on the calculation of photon fluxes as a function of
2739 Theta and as a function of time. The work is still in progress.
2740
2741 * macros/wowflux.C
2742 - the macr0 was added (extended and improved version of flux.C)
2743 - the macro steers the calculation of photon fluxes as a function
2744 of Theta and time
2745 - the macro is not yet complete; testing and developing is going on
2746
2747 * mhist/MHAlphaEnergyTheta.[h,cc], mhist/MHAlphaEnergyTime.[h,cc],
2748 mhist/MHEffOnTimeTheta.[h,cc], mhist/MHEffOnTimeTime.[h,cc],
2749 mhist/MHTimeDiffTheta.[h,cc], mhist/MHTimeDiffTime.[h,cc]:
2750 - documentation was added
2751 - histogram axes were labeled
2752
2753 * mhist/MHEffOnTimeTheta.cc:
2754 - range in which the fit of the distribution of time differences
2755 is to be performed has been calculated
2756 - new histograms were added (chi2/NDF, lambda, N0del)
2757
2758
2759
2760 2002/04/23: Thomas Bretz
2761
2762 * madata/Makefile, mdata/DataIncl.h, mdata/DataLinkDef.h,
2763 mdata/MData.[h,cc], mdata/MDataValue.[h,cc], mdata/MDataList.[h,cc],
2764 mdata/MDataChain.[h,cc], mdata/MDataMember.[h,cc]:
2765 - added
2766
2767 * mmc/MMcEvt.[hxx,cxx]:
2768 - added correct units for fImpact
2769
2770
2771
2772 2002/04/22: Thomas Bretz
2773
2774 * Makefile:
2775 - added a chapter how to compile mars using shared libraries
2776
2777 * NEWS:
2778 - updated
2779
2780 * mfilter/MF.[h,cc]:
2781 - added
2782
2783 * mfilter/MFDataMember.[h,cc]:
2784 - added
2785
2786 * mhist/MH3.[h,cc]:
2787 - added
2788
2789 * mhist/MHHillasExt.[h,cc]:
2790 - added
2791
2792 * macros/rootlogon.C:
2793 - added make() function
2794 - splitted rootlogon()
2795
2796 * mbase/MFilterList.cc:
2797 - fixed a bug in the constructor
2798 - small changes to the print function
2799
2800 * mbase/MParContainer.[h,cc]:
2801 - Added GetterMethod-Function
2802
2803 * mbase/MParList.cc:
2804 - Added a security check in case no def. constructor of the new class
2805 is available
2806 - changed print function
2807
2808 * mbase/MReadTree.cc:
2809 - changed so that the class type of the branch is used for creation of
2810 a new object instead of its name
2811
2812 * mbase/MTaskList.[h,cc]:
2813 - fixed the check for the Process function. Only base classes
2814 of first order have been checked
2815
2816 * mfilter/FilterLinkDef.h, mfilter/Makefile:
2817 - added MF, MFDataMember
2818
2819 * mhist/HistLinkDef.h, mhist/MFillH.cc:
2820 - added MH3, MHHillasExt
2821
2822 * mhist/MFillH.cc:
2823 - small changes
2824
2825 * mhist/MH.[h,cc]:
2826 - changed name handling in MakeDefCanvas to TString
2827
2828 * mhist/MHHillas.cc:
2829 - exchanged Get*axis()->SetTitle with Set*Title()
2830
2831 * mhist/MHHillas.h:
2832 - made SetMm2Deg virtual (for MHHillasExt)
2833
2834 * mhist/MHStarMap.[h,cc]:
2835 - changed layout from mm to deg
2836
2837 * mhist/MHHillasSrc.cc:
2838 - fixed a bug which made it unpossible to display fDist in degrees
2839
2840
2841
2842 2002/04/19: Thomas Bretz
2843
2844 * mbase/MTaskList.cc:
2845 - fixed a heavy bug which caused PreProcess to crash (GetListOfBases
2846 return a List of TBaseClasses not a List of TClass objects)
2847 - added a security check to Process whether we have something to process or not.
2848
2849 * macros/CT1Hillas.C:
2850 - changed to the new Hillas classes
2851
2852 * macros/readCT1.C:
2853 - fixed a bug causing readCT1.C to crash when reading the first event
2854 being a pedestal event
2855
2856
2857
2858 2002/04/17: Thomas Bretz
2859
2860 * mbase/MParContainer.cc:
2861 - case label TMethodCall::kOther changed to default to get rid of
2862 some warnings in newer root's (missing case label kString)
2863
2864 * mbase/MAGIC.h:
2865 - changed defintion of Glog so that it now works on Alpha machines, too.
2866
2867
2868
2869 2002/04/16: Thomas Bretz
2870
2871 * mhist/MHHillas.cc:
2872 - Fixed a 'redefinition of default argument' on alpha
2873
2874
2875
2876 2002/04/15: Thomas Bretz
2877
2878 * mgui/MGeomCam.cc:
2879 - Added SetReadyToSave to Constructor
2880
2881 * mhist/MH.cc:
2882 - Added some #ifdef conditionals for a fix in root
2883
2884 * mfilter/MFAlpha.[h,cc]:
2885 - made IsExpressionTrue inline
2886
2887
2888
2889 2002/04/05: Thomas Bretz
2890
2891 * mmain/MDataCheck.cc:
2892 - exchanged order in call to MFillH constructor
2893 - made eventloop infinite (only 300 events have been processed)
2894
2895 * mbase/MEvtLoop.h:
2896 - added GetTaskList
2897
2898 * mbase/MTaskList.[h,cc]:
2899 - introduced fTasksProcess which contains only the tasks
2900 which overloads the process function so that processing
2901 tasks doesn't waste time if a tasks doesn't have the process
2902 function
2903
2904 * mgui/MGeomPix.[h,cc]:
2905 - corrected calculation of pixel area
2906
2907
2908
2909 2002/04/04: Thomas Bretz
2910
2911 * mbase/MLog.cc:
2912 - stripped last character (CR) from output redirected to GUI
2913
2914
2915
2916 2002/03/21: Thomas Bretz
2917
2918 * mhists/MH.cc:
2919 - TAxis::Set resets the axis title so I implemented a workaround
2920 in SetBinning so that the axis title survives.
2921
2922 * mhists/MHEffOnTimeTheta.cc, MHEffOnTimeTime.cc:
2923 - replaced Get*axis()->SetTitle() by Set*Title()
2924 - corrected the Name in MakeDefCanvas
2925
2926
2927
2928 2002/03/20: Thomas Bretz
2929
2930 * macros/flux.C:
2931 - fixed a small bug (thanks to Wolfgang)
2932
2933 * mhist/MHHillas.[h,cc]:
2934 - added more scaling options
2935 - added setting for scaling factor
2936
2937 * mhist/MHStarMap.cc:
2938 - changed sign of t (due to a mail of Wolfgang)
2939
2940 * mhist/MHTimeDiff*.cc:
2941 - removed an implicit down-cast (TH1D --> TH1)
2942
2943
2944
2945 2002/03/15: Oscar Blanch
2946
2947 * mmc/McLinkDef.h
2948 - Automatic scheme evolution for all MC format classes.
2949 It has been checked that it keeps compatibility with old files.
2950
2951 * mmc/MTriggerDefine.h
2952 - Enlarge number of trigger pixels.
2953
2954 * mmc/MTrigger.[cxx,hxx]
2955 - Trigger zone has been enlarged. Now information about status
2956 of the pixel is saved for all Camera pixels.
2957 - Old files can still be read but becareful when one looks at the
2958 data member fPixelsFirst which is an array of different size for
2959 the new and old files.
2960 - ClassDef version upgraded to 2.
2961
2962 * mmc/MTriggerHedaer.[cxx,hxx]
2963 - Member data fElecNoiseTrig, which has information about the
2964 electronic noise in the trigger chain, has been introduced.
2965 - Trigger zone has been enlarged. Now information about status
2966 of the pixel is saved for all Camera pixels.
2967 - Old files can still be read but becareful when one looks at the
2968 data member fThreshold which is an array of diferent size for
2969 the new and old files.
2970 - ClassDef version upgraded to 2.
2971
2972
2973
2974 2002/03/13: Oscar Blanch
2975
2976 * mmc/MMcRunHeader.[cxx,hxx]
2977 - Several new variable members have been added
2978 - Version number updated to 2
2979
2980
2981
2982 2002/03/12: Thomas Bretz
2983
2984 * mmontecarlo/MMcTimeGenerate.cc (thanks to Wolfgang):
2985 - removed wrong comment for Process
2986 - changed Int_t to UInt_t (more readable)
2987 - replaced unit: ms -> 0.1ms
2988
2989
2990
2991 2002/03/08: Thomas Bretz
2992
2993 * manalysis/MHillasSrc.[h,cc]:
2994 - added fHeadTail
2995 - changed version number to 2.
2996
2997
2998
2999 2002/03/07: Thomas Bretz
3000
3001 * mbase/MParContainer.[h,cc], MWriteAsciiFile.[h,cc]:
3002 - added a scale value which can be used in case you are writing
3003 single data mambers
3004
3005
3006
3007 2002/03/04: Thomas Bretz
3008
3009 * mbase/MParContainer.cc:
3010 - changed AsciiWrite so that only base classes with a version
3011 id > 0 are written (important for MParContainer)
3012
3013
3014
3015 2002/03/01: Thomas Bretz
3016
3017 * mhist/MHMcEfficiencyEnergy.[h,cc], mhist/MHMcEfficiencyImpact.[h,cc],
3018 mhist/MHMcDifRate.[h,cc], mhist/MHMcIntRate.[h,cc]:
3019 - added
3020
3021 * mhist/Makefile, mhist/HistLinkDef.h:
3022 - added MHMcEfficiencyEnergy and MHMcEfficiencyImpact
3023 - added MHMcDifRate and MHMcIntRate
3024
3025 * mhist/MHMcCollectionArea.[h,cc]:
3026 - changed instantiation of collection area histogram
3027 - added settings for the binning
3028 - replaced division by root function
3029 - added Calc-functions
3030 - added GetHist
3031
3032 * mhist/MHMcEfficiency.[h,cc]:
3033 - changed pointers in Calc functions to references
3034
3035
3036
3037
3038
3039 2002/02/28: Thomas Bretz
3040
3041 * mhist/MHMcEnergyImpact.[h,cc], mhist/MHMcEfficiency.[h,cc]:
3042 - added
3043
3044 * mhist/Makefile, mhist/HistLinkDef.h:
3045 - added MHMcEnergyImpact and MHMcEfficiency
3046
3047 * mhist/*.cc:
3048 - repaced some *&-> casts by &.
3049
3050 * mhist/MHMcCollectionArea.[h,cc]:
3051 - changed to be able to use new MHMcEfficiency.
3052
3053
3054
3055 2002/02/21: Abelardo Moralejo
3056
3057 * manalysis/MHillasExt.cc :
3058 - added #include <math.h> (else, fabs not recognized by OSF)
3059
3060
3061
3062 2002/02/21: Thomas Bretz
3063
3064 * manalysis/MHillas.[h,cc]:
3065 - changed fMeanx and fMeany to fMeanX and fMeanY to match the names
3066 of the getter functions, needed by TDataMember::GetterMethod
3067 - commented out WriteAscii (replaced by more general in MParContainer
3068 and MWriteAsciiFile)
3069
3070 * manalysis/MHillasSrc.[h,cc], mmc/MMcEvt.[hxx, cxx]:
3071 - commented out WriteAscii (replaced by more general in MParContainer
3072 and MWriteAsciiFile)
3073
3074 * manalysis/MHillasExt.[h,cc]:
3075 - added necessary Getter Methods
3076
3077 * mbase/MFilterList.cc:
3078 - removed a nonsens comment
3079
3080 * mbase/MGList.cc:
3081 - relay on the bugfix for DynamicCast
3082
3083 * mbase/MParContainer.[h,cc]:
3084 - implemented WriteDataMember to have a more general interface
3085 for readable output.
3086 - changed ofstream to a more general ostream
3087
3088 * mbase/MWriteAsciiFile.[cc,h]:
3089 - generalized ascii writer to be able to write single data members
3090
3091
3092
3093 2002/02/13: Thomas Bretz
3094
3095 * Makefile:
3096 - made 'make dox' dependant on existance of shared object
3097
3098
3099
3100 2002/02/13: Thomas Bretz
3101
3102 * macros/MagicHillas.C, mhist/MHHillas.[h,cc], mhist/MHHillasSrc.[h,cc]:
3103 - implemented variable binning (MBinning)
3104 - implemented conversion to degrees (thanks to rudy)
3105
3106 * mgui/MGeomCam.[h,cc], mgui/MGeomCamCT1.cc, mgui/MGeomCamMagic.cc:
3107 - implemented fMm2Deg and fCamDist
3108
3109
3110
3111 2002/01/23: Thomas Bretz
3112
3113 * macros/flux.C:
3114 - fixed some bugs
3115 - uncommented all drawing
3116
3117 * mhist/MBinning.h:
3118 - changed SetEdges(TArrayD)
3119
3120 * mhist/MH.cc:
3121 - SetBinning(..., TAxis*,...) didn't work. Corrected.
3122
3123 * mhist/MHAlphaEnergyTheta.cc, mhist/MHAlphaEnergyTime.cc,
3124 mhist/MHEffOnTimeTheta.cc, mhist/MHEffOnTimeTime.cc,
3125 mhist/MHTimeDiffTheta.cc, mhist/MHTimeDiffTime.cc:
3126 - changed wrong titles, names, etc.
3127 - changed way of drawing projections
3128 - fixed usage of MH::SetBinning(TH1*)
3129
3130
3131
3132 2002/01/22: Thomas Bretz
3133
3134 * mhist/MHHillasSrc.[h,cc], mhist/MHFadcCam.[h,cc]:
3135 - changed return type of Fill to Bool_t
3136
3137 * mfilter/MFAlpha.[h,cc]:
3138 - added
3139
3140 * mfilter/MFill.[h,cc]:
3141 - implemented a new calling style which allows you to let MFillH
3142 create the necessary histogram objects
3143
3144 * mmain/MAnalysis.cc, macros/MagicHillas.C:
3145 - changed to new stylish MHillas parameter containers
3146
3147 * meventdisp/MGEvtDisplay.cc, mgui/MCamDisplay.cc,
3148 mmain/MDataCheck.[h,cc]:
3149 - fixed a warning in red hat linux
3150
3151 * mfilter/FilterLinkDef.h, mfilter/Makefile:
3152 - added MFAlpha
3153
3154 * mhist/MHHillas.[h,cc], mhist/MHHillasSrc.[h,cc]:
3155 - added SetupFill and usage of MBinning objects
3156
3157 * manalysis/MEnergyEst.[h,cc], manalysis/MEnergyEstimate.[h,cc],
3158 mhist/MHTimeDiffTime.[h,cc], mhist/MHEnergyTheta.[h,cc],
3159 mhist/MHEnergyTime.[h,cc], mhist/MHAlphaEnergyTheta.[h,cc],
3160 mhist/MHAlphaEnergyTime.[h,cc], mhist/MHTimeDiffTheta.[h,cc],
3161 mmontecarlo/MMcTimeGenerate.[h,cc]:
3162 - added
3163
3164 * manalysis/Makefile:
3165 - added MEnergyEst.cc
3166 - added MEnergyEstimate.cc
3167
3168 * mbase/MFilter.[h,cc], mfilter/MF*.[h,cc]:
3169 - added name and title to constructor
3170
3171 * macros/flux.C:
3172 - added
3173
3174
3175
3176 2002/01/21: Thomas Bretz
3177
3178 * mbase/MReadMarsFile.cc, mbase/MReadTree.[h,cc]:
3179 - implemented GetFileName
3180
3181 * mmc/MMcEvt.[hxx,cxx]
3182 - implemented WriteAscii
3183
3184 * mgui/MGeomPix.h:
3185 - implemented first version of GetA
3186
3187 * mhist/MBinning.h:
3188 - small changes to formulas
3189
3190 * mhist/MH.[h,cc]:
3191 - implemented SetBinnign functions
3192
3193 * macros/readMagic.C:
3194 - removed MPedestalCam
3195
3196
3197
3198 2002/01/19: Thomas Bretz
3199
3200 * mbase/MParContainer.cc:
3201 - generalized virtual function AsciiWrite
3202
3203 * changed to fit new MHillas inhertance model:
3204 - manalysis/MHillas.[h,cc]
3205 - manalysis/MHillasCalc.[h,cc]
3206 - mhist/MHHillas.[h,cc]
3207 - mhist/MHStarMap.[h,cc]
3208
3209 * added to fit new MHillas inhertance model:
3210 - manalysis/MSrcPosCam.[h,cc]
3211 - manalysis/MHillasSrc.[h,cc]
3212 - manalysis/MHillasSrcCalc.[h,cc]
3213 - manalysis/MHillasExt.[h,cc]
3214 - mhist/MHHillasSrc.[h,cc]
3215
3216 * manalysis/MCerPhotEvt.[cc,h]:
3217 - introduced weighting with pixel size in GetNumPhotonsMin
3218 - introduced weighting with pixel size in GetNumPhotonsMax
3219
3220 * mgui/MCamDisplay.cc:
3221 - weight the displayed color with the pixel size
3222
3223
3224
3225 2002/01/18: Thomas Bretz
3226
3227 * mhist/MBinning.[h,cc]:
3228 - added (not yet in Makefile)
3229
3230 * mbase/MWriteAsciiFile.cc:
3231 - fixed a bug: replaced GetSize by GetEntries
3232
3233 * mbase/MReadTree.cc:
3234 - changed EnableBranch to accept "Master.Sub" also
3235
3236
3237
3238 2002/01/16: Thomas Bretz
3239
3240 * mars.cc:
3241 - changed version number to 0.7
3242
3243 * NEWS:
3244 - changed current version to 0.7
3245
3246 * manalysis/MMcPedestalNSBAdd.cc:
3247 - small changes to output
3248
3249 * mbase/MParList.[h,cc]:
3250 - added FindObject with class type argument
3251
3252 * mbase/MWriteAsciiFile.cc
3253 - replaced call to InheritsFrom by new FindObject
3254
3255
3256
3257 2002/01/15: Thomas Bretz
3258
3259 * manalysis/MBlindPixelCalc.[h,cc]:
3260 - added more comments
3261 - removed a debug statement
3262
3263 * manalysis/MBlindPixels.[h,cc]:
3264 - added more comments
3265
3266 * manalysis/MCerPhotCalc.cc:
3267 - changed the warning output
3268
3269 * manalysis/MMcPedestalCopy.h:
3270 - added comments
3271
3272 * manalysis/MMcPedestalNSBAdd.[h,cc]:
3273 - added comments
3274 - changed call to AddedToBranchList
3275
3276 * mbase/MWriteAsciiFile.cc:
3277 - added comments
3278
3279 * mmc/MMcRunHeader.[hxx,cxx]:
3280 - made getter const
3281
3282 * meventdisp/MGCamDisplay.cc:
3283 - updated to use MBlindPixelCalc
3284
3285 * mbase/MEvtLoop.cc:
3286 - replaced wrong "MTasklist" by "MTaskList"
3287
3288
3289
3290 2002/01/14: Thomas Bretz
3291
3292 * manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc:
3293 - added comments
3294
3295 * mbase/MReadMarsFile.cc:
3296 - changed output when switching to new file
3297
3298 * meventdisp/MGFadcDisp.cc:
3299 - made char array in constructor const
3300 - changed char-array to TString
3301
3302 * mmain/MBrowser.[h,cc]:
3303 - changed char-arrays to TString
3304
3305 * mmain/MDataCheck.[h,cc]:
3306 - made char array in constructor const
3307
3308 * Makefile.conf.linux, Makefile.conf.linux-gnu:
3309 - changed to O5
3310
3311 * mbase/MEvtLoop.cc:
3312 - check for inheritance from MTaskList
3313
3314 * manalysis/MPedestalCopy.cc, manalysis/MPedestalNSBAdd.cc:
3315 - small changes
3316
3317 * mbase/MWriteAsciiFile.[h,cc]:
3318 - changed to be able to write more than one container in a line
3319
3320
3321
3322 2002/01/11: Oscar Blanch Bigas
3323
3324 * mmain/MAnalysis.cc:
3325 - added MBlindPixelCalc step.
3326
3327 * macros/trigrate.C:
3328 - the list of MHMcRate is created using from and to instead of
3329 only dimension. Otherwise the case of a single trigger option is
3330 not well treated.
3331
3332 * mhist/MHMcRate.[h,cc]:
3333 - added funtion members SetFlux and SetIncidentRate and small
3334 modification in CalcRate member function
3335
3336 * mmontecarlo/MMcTriggerRateCalc.cc:
3337 - now this task sets the parameters to know the incident particle
3338 flux using MHMcRate::SetFlux. The value are decided by the task
3339 itself depending on the fPartId.
3340
3341 * manalysis/MBlindPixelCalc.cc:
3342 - rename MMcRunHeader:GetStarFieldDe to MMcRunHeader:GetStarFieldDec.
3343
3344 * mmc/MMcRunHeader.[hxx, cxx]:
3345 - rename MMcRunHeader:GetStarFieldDe to MMcRunHeader:GetStarFieldDec.
3346
3347
3348
3349 2002/01/10: Oscar Blanch Bigas
3350
3351 * mbase/Makefile:
3352 - added -I../MRawFormat in the included directories for compile
3353 and link. It was needed to use this Makefile to compile the
3354 files inside the drectory while compiling Monte Carlo programs.
3355
3356 * mraw/Makefile:
3357 - added -I../MBase in the included directories for compile
3358 and link. It was needed to use this Makefile to compile the
3359 files inside the drectory while compiling Monte Carlo programs.
3360
3361 * mbase/Makefile:
3362 - added -I../MBase- in the included directories for compile
3363 and link. It was needed to use this Makefile to compile the
3364 files inside the drectory while compiling Monte Carlo programs.
3365
3366 * mbase/MReadTree.cc:
3367 - changed #include "../mraw/MRawEvtData.h" by #include
3368 "MRawEvtData.h" to remove dependencies on the directory tree naming.
3369
3370
3371
3372 2002/01/09: Oscar Blanch Bigas
3373
3374 * manalysis/MPedestalCam.[h,cc]:
3375 - added CheckBounds function to check that program does not try to
3376 access pedestal outside the camera size.
3377
3378 * manalysis/MCerPhotCalc.h:
3379 - Member data const MPedestalCam *fPedestals -> MPedestalCam
3380 *fPedestals.
3381
3382 * manalysis/MCerPhotCalc.cc:
3383 - Sanity check to avoid searching to pedestals outside the camera
3384 size has been added.
3385
3386 * mmc/MMcRunHeader.[h,cxx]:
3387 - added functions GetStarField[De,Ra].
3388
3389 * manalysis/MBlindPixels.[h,cc]:
3390 - new containet that has a list of pixels that should not be used
3391 in the analysis for any reason (corrupted, star in them, ...).
3392
3393 * manalysis/MBlindPixelCalc.[h,cc]:
3394 - It is a task used to set up the list of blind pixels. Currently
3395 it recognises the CrabNebula starfield and then switch off the
3396 Theta Taury pixels. Blind pixels can be also introduced through
3397 the macro or analysis program.
3398
3399 * manalysis/Makefile:
3400 - added MBlindPixels and MBlinPixelCalc.
3401
3402 * manalysis/AnalysisLinkDef.h:
3403 - added MBlindPixels and MBlinPixelCalc.
3404
3405 * macros/MagicHillas.C:
3406 - added MBlindPixelCalc to avoid bias results due to Star Field
3407 NSB.
3408
3409 * macros/readMagic.C:
3410 - added MBlindPixelCalc to avoid bias results due to Star Field NSB while
3411 computing the Hillas parameters.
3412
3413
3414
3415 2001/12/19: Thomas Bretz
3416
3417 * mbase/MEvtLoop.cc:
3418 - added #ifdef directive to make it work on older root also
3419
3420 * mbase/MReadTree.cc:
3421 - added #ifdef directive to get rid of the memory leak in prior
3422 root 3.02/* versions
3423
3424 * macros/MagicHillas.C, macros/readMagic.C, meventdisp/MGCamDisplay.cc,
3425 mmain/MAnalysis.cc:
3426 - changes MMcPedestalNSB to MMcPedestalNSBAdd
3427
3428 * manalysis/MMcPedestalCopy.[h,cc], manalysis/MMcPedestalNSBAdd.[h,cc]:
3429 - reorganized ReInit, PreProcess.
3430 - moved some code from ReInit to PreProcess to make the code
3431 simpler. At the moment we don't intend to change the
3432 objects in the parlist while runtime.
3433
3434 * manalysis/MMcPedestalNSB.[h,cc]:
3435 - removed
3436
3437 * mbase/MReadMarsFile.cc:
3438 - read the first run header twice. To make it available in the
3439 PreProcess of all tasks
3440
3441 * mbase/MTaskList.cc:
3442 - fixed a bug in the ReInit function. The ReInits where calles with
3443 a NULL-pointer
3444
3445
3446
3447 2001/12/18: Oscar Blanch
3448
3449 * manalysis/Makefile:
3450 - Removed MMcPedestalNSB from compilation and added
3451 MMcPedestalNSBAdd.
3452
3453 * manalysis/AnalysisLinkDefine.h:
3454 - Removed MMcPedestalNSB from class list and added
3455 MMcPedestalNSBAdd.
3456
3457 * manalysis/MMcPedestalCopy.[h,cc]
3458 - added ReInit function.
3459 - move all actions needed to redo for each run from PreProcess
3460 to ReInit
3461 - fix bug of Pedestal and Pedestal fluctuaions correspondence.
3462
3463 * manalysis/MMcPedestalNSBAdd.[h,cc]
3464 - new name for old MMcPedestalNSB.[h,cc]
3465 - added ReInit function.
3466 - move all actions needed to redo for each run from PreProcess
3467 to ReInit
3468 - information about pixel size is used from MGeomCam.
3469
3470 * manalysis/MCerPhotCalc.[h,cc]
3471 - remove fNumLoGainFadcSlices and fNumHiGainFadcSlices members
3472 - fix bug of Pedestal and Pedestal fluctuaions correspondence.
3473
3474
3475 2001/12/18: Thomas Bretz
3476
3477 * manalysis/MMcPedestalCopy.cc:
3478 - changed output
3479
3480 * manalysis/MMcPedestalNSB.cc:
3481 - changed output
3482 - simplified initialization in PreProcess
3483
3484 * mbase/MAGIC.h:
3485 - added kSKIP
3486
3487 * mbase/MParList.cc:
3488 - added a check for the correct inheritance in FindCreateObj
3489
3490 * mbase/MTask.cc:
3491 - added support for kSKIP in PreProcess
3492
3493 * mbase/MTaskList.[h,cc]
3494 - added support for kSKIP in PreProcess
3495 - added Remove function (private)
3496
3497
3498
3499 2001/12/17: Thomas Bretz
3500
3501 * .rootrc:
3502 - added Root.Html.DescriptionStyle
3503 - added Root.Html.SearchEngine
3504
3505 * macros/dohtml.C:
3506 - changed to use THtml (root >= 3.02/06 only)
3507
3508 * manalysis/Makefile:
3509 - changed order to get rid of some wranings
3510
3511 * mbase/BaseLinkDef.h:
3512 - removed MHtml
3513
3514 * mbase/MEvtLoop.cc:
3515 - exchanged gSystem->ProcessEvents() by gClient->ProcessEventsFor()
3516 to make gui update faster
3517
3518 * mbase/MGList.cc:
3519 - added a missing sanity check (workaround for a root bug)
3520
3521 * mbase/MReadTree.cc:
3522 - uncomment EnableBranchCoosing for AutoEnablingScheme
3523 (don't know why there was a comment which made things realy slow)
3524 - changed the auto enabling scheme, so that a branch isn't enabled
3525 more than once. This doesn't hurt, but the output may confuse the
3526 users.
3527
3528 * mbase/MTask.cc:
3529 - added a simple not really necessary check whether the branch is
3530 already in the list
3531
3532 * mbase/MWriteRootFile.cc:
3533 - changed kFillTree to a local const
3534
3535 * mbase/Makefile:
3536 - removed MHtml.cc
3537
3538 * mfilter/MFTriggerLvl1.cc:
3539 - changed AddBranchToList to use the correct container name
3540
3541
3542
3543 2001/12/14: Thomas Bretz
3544
3545 * mbase/MReadMarsFile.[h,cc], mbase/MReadFild.[h,cc]:
3546 - corrected handling of ReInit/Notify (at the moment I assume
3547 one run per file)
3548 - made sure, that we don't get memory leaks when using MReadTree
3549 more than once because the pointer to the pointer isn't deleted.
3550 - added a small class MChain which enhances TChain by a function to
3551 reset fTree. This is used to control when notification are
3552 happening
3553
3554 * mbase/MTask.cc:
3555 - reset the number of executions before the preprocessing
3556
3557
3558
3559 2001/12/11: Thomas Bretz
3560
3561 * mbase/MGGroupFrame.cc:
3562 - removed default arguments from source file
3563
3564 * mbase/MGList.cc:
3565 - changed cast in IsExisting to ?:
3566
3567 * NEWS:
3568 - changed
3569
3570 * manalysis/MCerPhotCalc.cc, mfilter/MTriggerLvl1.cc,
3571 mmontecarlo/MMcCollectionAreaCalc.cc,
3572 mmontacarlo/MMcThresholdCalc.cc,
3573 MMcTriggerRateCalc.cc:
3574 - added Masterbranch name to AddToBranchList
3575
3576 * manalysis/MMcPedestalCopy.cc:
3577 - added Masterbranch name to AddToBranchList
3578 - fixed a bug in the branch name
3579
3580 * mbase/MGList.[h,cc]:
3581 - added a better output if a picture wasn't found
3582
3583 * mbase/MReadTree.[h,cc]:
3584 - added support for branches with master branch names to auto scheme
3585 (first the complete branch name is tried and if this isn't found
3586 only the subbranch name is used to enable the branch)
3587
3588 * mbase/MWriteRootFile.cc:
3589 - appended a '.' to all newly create branches
3590
3591 * mmain/MBrowser.cc, mmain/MMars.cc:
3592 - add the gui elements only if the corresponding picture was found
3593
3594 * mmain/MMars.[h,cc]:
3595 - removed fPic1
3596 - removed fPic2
3597 - changed TList to MGList
3598
3599 * mraw/MRawFileWrite.cc:
3600 - added a '.' to all branch names
3601
3602 * mbase/MTask.[h,cc]:
3603 - added Prototype for ReInit-function
3604
3605 * mbase/MTaskList.[h,cc]:
3606 - implemented ReInit for a task list
3607
3608 * mhist/MHFadcCam.h:
3609 - added '->' to fArray
3610
3611
3612
3613 2001/12/10: Thomas Bretz
3614
3615 * mmc/*.hxx:
3616 - Changed MPARCONTAINER_H to MARS_MParContainer
3617
3618 * meventdisp/MGCamDisplay.cc:
3619 - added MMcPedestalCopy to task list
3620 - added MMcPedestalNSB to task list
3621
3622 * mmain/MAnalysis.cc:
3623 - added MMcPedestalCopy to task list
3624 - added MMcPedestalNSB to task list
3625 - changed reader from MReadTree to MReadMarsFile
3626
3627 * meventdisp/MGEvtDisplay.cc:
3628 - changed reader from MReadTree to MReadMarsFile
3629
3630 * macros/MagicHillas.C, macros/readMagic.C:
3631 - removed unnecessary MReadTree
3632
3633
3634
3635 2001/11/28: Oscar Blanch Bigas
3636
3637 * mbase/MReadMarsFile.cc:
3638 - Added process of fRun = new MReadTree("RunHeaders", fname),
3639 needed to read RunHeaders tree information.
3640
3641 * manalysis/MCerPhotCalc.h:
3642 - Added fNumLoGainFadcSlices and fNumHiGainFadcSlices member
3643 variables because they are needed for Pedestal substraction.
3644
3645 * manalysis/MCerPhotCalc.h:
3646 - Change in the methode to substract the pedestal. The new
3647 methode is valid either for MC data and real data but only for
3648 the current integration (GetSumHiGainSamples()).
3649
3650 * macros/readMagic.C:
3651 - Added several tasks in the task list:
3652 MReadMarsFile to read RunHeaders Tree
3653 MPedestalCopy and MPedestalNSB to treat correctly pedestals.
3654
3655 * macros/MagicHillas.C:
3656 - Added several tasks in the task list:
3657 MReadMarsFile to read RunHeaders Tree
3658 MPedestalCopy and MPedestalNSB to treat correctly pedestals.
3659
3660 * mmc/MMcRunHeader.hxx:
3661 - Added GetNumPheFromDNSB().
3662
3663 * mmc/MMcFadcHeader.hxx:
3664 - Added GetAmplitud().
3665
3666 * manalysis/MMcPedestalNSB.h / .cc:
3667 - New class which adds to the pedestal rms the contribution from
3668 the diffuse NSB.
3669
3670 * manalysis/Makefile:
3671 - New class MMcPedestalNSB added.
3672
3673 * manalysis/AnalysisLinkDefine.
3674 - New class MMcPedestalNSB added.
3675
3676
3677
3678 2001/11/16: Thomas Bretz
3679
3680 * mhist/MHMcCollectionArea.cc:
3681 - set the ReadyToSave bit in CalcEfficiency.
3682
3683 * mmontecarlo/MMcThresholdCalc.cc:
3684 - set the ReadyToSave bit after the calculation has been finished.
3685
3686 * mhist/MHMcRate.cc:
3687 - set the ReadyToSave bit in CalcRate
3688
3689
3690
3691 2001/11/16: Thomas Bretz
3692
3693 * mbase/MEvtLoop.cc:
3694 - removed clock.Print()
3695
3696 * mbase/MGList.[cc,h]:
3697 - added support for TGPictures
3698
3699 * mbase/MReadTree.[h,cc]:
3700 - set ReadyToSave-bit only if reading was successfull
3701 - made SetReadyToSave private
3702
3703 * mbase/MTaskList.cc:
3704 - corrected a small bug in the output
3705
3706 * mbase/MWriteRootFile.cc:
3707 - added a workaround in Print (don't know why it fails for me)
3708 - removed fTrees.SetOwner()
3709
3710 * mbase/MTask.cc:
3711 - removed include of TOrdCollection, TMethod
3712 - some changes to the output
3713
3714 * mbase/MParContainer.h:
3715 - removed old comments
3716
3717 * mmain/MAnalysis.cc, mmain/MCameraDisplay.cc, mmain/MDataCheck.cc,
3718 mmain/MEvtDisp.cc, mmain/MMonteCarlo.cc:
3719 - changed Widget IDs to root style enums
3720 - moved enumerations in the range below 0x100
3721
3722 * mmain/MBrowser.[h,cc]:
3723 - removed some of the member variables, accessed via MGList now
3724 - changed TList to MGList
3725 - added a file-filter combo-box
3726
3727 * mars.cc:
3728 - changed output
3729
3730
3731
3732 2001/11/15: Thomas Bretz
3733
3734 * mbase/MArray.cc, mbase/MArrayB.cc,mbase/MArrayS.cc,
3735 mbase/MClone.cc, mbase/MEvtLoop.cc, mbase/MFilter.cc,
3736 mbase/MFilterList.cc, mbase/MGGroupFrame.cc, mbase/MGList.cc,
3737 mbase/MGTask.cc, mbase/MInputStreamID.cc, mbase/MLog.cc,
3738 mbase/MLogManip.cc, mbase/MParContainer.cc, mbase/MParList.cc,
3739 mbase/MPrint.cc, mbase/MReadMarsFile.cc, mbase/MReadTree.cc,
3740 mbase/MTime.cc, mbase/MWriteAsciiFile.cc, mbase/MWriteFile.cc,
3741 mbase/MWriteRootFile.cc, manalysis/MCT1ReadAscii.cc,
3742 manalysis/MCerPhotCalc.cc, manalysis/MHillas.cc,
3743 manalysis/MHillasCalc.cc, manalysis/MMcPedestalCopy.cc,
3744 manalysis/MPedCalcPedRun.cc, manalysis/MPedestalCam.cc,
3745 manalysis/MPedestalPix.cc, manalysis/MCerPhotEvt.cc,
3746 manalysis/MCerPhotPix.cc, manalysis/MImgCleanStd.cc,
3747 manalysis/MImgCleanStd.cc, mdatacheck/MDumlEvtHeader.cc,
3748 mdatacheck/MGDisplayAdc.cc, meventdisp/MGCamDisplay.cc,
3749 meventdisp/MGEvtDisplay.cc, meventdisp/MGFadcDisp.cc,
3750 mfilter/MFTriggerLvl1.cc, mgui/MGeomCam.cc, mgui/MGeomCamMagic.cc,
3751 mgui/MGeomCamCT1.cc, mgui/MgeomPix.cc, mgui/Mhexagon.cc,
3752 hist/MFillH.cc, mhist/MH.cc, mhist/MHFadcCam.cc, mhist/MHFadcPix.cc,
3753 hist/MHHillas.cc, mhist/MHMcCollectionArea.cc, mhist/MHMcEnergy.cc,
3754 mhist/MHMcRate.cc, mhist/MHStarMap.cc, mmain/MAnalysis.cc,
3755 mmain/MBrowser.cc, mmain/MCameraDisplay.cc, mmain/MDataCheck.cc,
3756 mmain/MEvtDisp.cc, mmain/MMars.cc, mmain/MMonteCarlo.cc,
3757 mmontcarlo/MMcCollectionAreaCalc.cc, mmontecarlo/MMcThresholdCalc.cc,
3758 mmontecarlo/MMcTriggerRateCalc.cc, mraw/MrawCrateArray.cc,
3759 mraw/MRawCrateData.cc, mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc
3760 mraw/MRawEvtPixelIter.cc, mraw/MRawEvtFileRead.cc,
3761 mraw/MRawEvtFileWrite.cc, mraw/MRawEvtRunHeader.cc
3762 - changed mailing address of author according to THtml of root 3.02
3763
3764 * mbase/MClone.cc, mbase/MEvtLoop.cc, mbase/MFilterList.cc,
3765 mbase/MGTask.cc, mbase/MParContainer.cc, mbase/MParList.cc,
3766 mbase/MPrint.cc, mbase/MReadMarsFile.cc, mbase/MReadTree.cc,
3767 mbase/MWriteAsciiFile.cc, mbase/MWriteFile.cc,
3768 mbase/MWriteRootFile.cc, manalysis/MCerPhotEvt.cc,
3769 manalysis/MCerPhotPix.cc, manalysis/MImgCleanStd.cc,
3770 mgui/MGeomCam.cc, mgui/MGeomCamMagic.cc, mgui/MGeomCamCT1.cc,
3771 mgui/MgeomPix.cc, mgui/Mhexagon.cc, hist/MFillH.cc, mhist/MHMcEnergy.cc,
3772 mhist/MHMcRate.cc, mmontcarlo/MMcCollectionAreaCalc.cc,
3773 mmontecarlo/MMcThresholdCalc.cc, mmontecarlo/MMcTriggerRateCalc.cc
3774 mraw/MRawCrateData.cc, mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc
3775 mraw/MRawEvtPixelIter.cc, mraw/MRawEvtFileRead.cc,
3776 mraw/MRawEvtFileWrite.cc, mraw/MRawEvtRunHeader.cc
3777 - changed output to new style logging (verbosity level introduced)
3778
3779 * mbase/MGTask.h:
3780 - added default to CreateGui
3781
3782 * mbase/MLog.cc
3783 - chnaged comparision between output and debug level from >= to >
3784
3785 * mbase/MLogManip.h:
3786 - added defintions for debug levels
3787
3788 * mbase/MReadTree.[h,cc]:
3789 - added support for filters
3790 - SetReadyToSave added
3791 - Print added
3792
3793 * mbase/MTaskList.[h,cc], MTask.[h,cc]:
3794 - changed TOrCollection to TList, because TList can be stored in a
3795 root file.
3796
3797 * mbase/MTask.[h,cc]:
3798 - added GetFilter function (used in MReadTree)
3799
3800 * manalysis/MImgCleanStd.cc:
3801 - same changed to the GUI layout
3802 - added Print member function
3803
3804 * meventdisp/MGCamDisplay.cc:
3805 - added group frame around some gui elements
3806
3807 * mfilter/MFTriggerLvl1.cc:
3808 - fixed missing Init call
3809 - added missing AddToBranchList call
3810
3811 * mars.cc:
3812 - added command line option to set the verbosity level
3813
3814 * merpp.cc:
3815 - added setup for highest verbosity level
3816
3817
3818
3819 2001/11/14: Thomas Bretz
3820
3821 * macros/dohtml.C:
3822 - added missing path to mfilter
3823
3824 * manalysis/MHillas.cc:
3825 - changed the degree symbol back to 'deg', it seems that the code
3826 for it isn't common
3827
3828 * mhist/MH.cc:
3829 - added comment for MakeDefCanvas
3830
3831 * mhist/MHFadcCam.[h,cc]:
3832 - removed old comments (SaveHist)
3833
3834 * mhist/MHHillas.cc:
3835 - changed the Name of fAlpha back. Symbols are nonsens in the name.
3836
3837 * mbase/MGList.[h,cc], mbase/MGTask.[h,cc], mbase/MGGroupFrame.[h,cc]:
3838 - added
3839
3840 * Makefile.conf.linux, Makefile.conf.linux-gnu:
3841 - changed to O3
3842 - added -fnonnull-objects
3843 - added -Woverloaded-virtual
3844
3845 * macros/readCT1.C, macros/readMagic.C:
3846 - changed to use MClone
3847
3848 * manalysis/MImgCleanStd.[h,cc]:
3849 - derived from TGTask
3850 - added CreateGuiElements
3851 - added ProcessMessage
3852
3853 * mbase/BaseLinkDef.h, mbase/Makefile:
3854 - added MGTask
3855 - added MGList
3856 - added MGGroupFrame
3857
3858 * mbase/MInputStreamID.cc:
3859 - rmoved old comment
3860
3861 * mbase/MParContainer.[h,cc]:
3862 - changed output
3863 - made Hash const
3864 - added GetDiscriptor
3865
3866 * mbase/MParList.[h,cc]:
3867 - made FindObject const correct (see TObject)
3868
3869 * mbase/MTask.[h,cc]:
3870 - changed output to use GetDescriptor
3871 - made Call* functions virtual (used in TGTask)
3872
3873 * mbase/MTaskList.[h,cc]:
3874 - made FindObject const correct (see TObject)
3875 - changed output to use GetDescriptor
3876
3877 * mbase/MTime.cc:
3878 - code reformatting
3879
3880 * mbase/MWriteRootFile.cc:
3881 - small changes in output
3882
3883 * mgui/MHexagon.cc:
3884 - changed output according to TEllipse and similar
3885 - made ls const
3886
3887 * mhist/MFillH.cc:
3888 - changed output to use GetDescriptor
3889
3890 * mmain/MAnalysis.[h,cc]:
3891 - changed to use new GUI of MImgCleanStd
3892
3893 * mraw/MRawEvtData.cc:
3894 - small changes to output
3895 - better sanity check for non existing fRunHeader
3896
3897
3898
3899 2001/11/09: Thomas Bretz
3900
3901 * mars.cc, merp.cc, macros/rootlogon.C:
3902 - added MArray::Class()->IgnoreTObjectStreamer();
3903
3904
3905
3906 2001/11/08: Thomas Bretz
3907
3908 * meventdisp/MGCamDisplay.cc:
3909 - changed enums to root style
3910 - get rid of the problem of button deletion by adding the buttons
3911 as first entries to the list
3912
3913 * mmain/MMonteCarlo.cc:
3914 - changed enums to root style
3915 - get rid of the problem of button deletion by adding the buttons
3916 as first entries to the list
3917
3918 * manalysis/MCerPhotCalc.cc, manalysis/MPedCalcPedRun.cc,
3919 mhist/MHFadcCam.cc:
3920 - removed 'Fadc' from function names
3921
3922 * manalysis/MCerPhotEvt.[h,cc]:
3923 - made AddPixel inline
3924
3925 * manalysis/MMcPedestalCopy.cc:
3926 - added output
3927
3928 * manalysis/MPedestalCam.cc:
3929 - removed FIXME
3930
3931 * Makefile's:
3932 - some reordering
3933 - changed to the output
3934
3935 * mbase/MReadTree.cc:
3936 - removed setting of AutoDel-flag (this was not intended and doesn't
3937 work for a TChain, yet)
3938
3939 * meventdisp/MGCamDisplay.cc, meventdisp/MGFadcDisp.cc:
3940 - moved SetWMSizeHints to base class
3941
3942 * meventdisp/MGEvtDisplay.cc:
3943 - added a random move and the SetWMSizeHints
3944
3945 * mhist/MHHillas.cc:
3946 - replaced some text by Latex-formulas
3947
3948 * mmain/MBrowser.cc:
3949 - added a menu entry for opening a TBrowser
3950 - added a random move
3951
3952 * mmain/MMars.[h,cc]:
3953 - changed enums to root style
3954 - moved size specification from header to source
3955 - changed SetWMSizeHints call
3956
3957 * mraw/MrawEvtPixelIter.[h,cc]:
3958 - added fNum[Hi,Lo]GainSamples to make GetSum* faster
3959 - removed 'Fadc' from function names
3960
3961
3962
3963 2001/11/07: Thomas Bretz
3964
3965 * Makefile:
3966 - changed order in 'mrproper'
3967
3968 * manalysis/MCT1ReadAscii.cc, manalysis/MCerPhotCalc.cc:
3969 - added InitSize
3970
3971 * manalysis/MCerPhotEvt.[h,cc]:
3972 - introduces InitSize to speed up things
3973 - changed []-operator to an unchecked access
3974
3975 * manalysis/MPedestalCam.h:
3976 - changed ExpandCreateFast to ExpandCreate (due to lack of good dox)
3977 - changed []-operator to an unchecked access
3978
3979 * mbase/MEvtLoop.cc:
3980 - changed 'total' to 'real' time.
3981
3982 * mgui/MGeomCam.[h,cc]:
3983 - moved []-operator code back to class definition, due to runtime speed
3984 - changed []-operator to an unchecked access
3985
3986 * mhist/MHHillas.cc:
3987 - changed 'degree' to Latex-style
3988
3989 * manalysis/MImgCleanStd.cc:
3990 - we are now initialising an array holding the used pixel to prevent
3991 looping through all pixel thousands of times
3992 (MCerPhotEvt::IsPixelUsed)
3993
3994 * mbase/MWriteAsciiFile.cc:
3995 - enhanced the documentation
3996
3997 * mmain/MBrowser.[h,cc]:
3998 - enhanced the functionality to display the filename
3999 - improved the layout
4000
4001 * mmain/MMars.cc:
4002 - added calling of 'netscape' for the two picture buttons
4003
4004
4005
4006 2001/11/06: Thomas Bretz
4007
4008 * mbase/MReadMarsFile.[h,cc]:
4009 - added
4010
4011 * manalysis/MMcPedestalCopy.[h,cc]:
4012 - moved copying to PreProcess
4013 - removed Process
4014
4015 * mbase/Makefile, mbase/BaseLinkDef.h
4016 - added MReadMarsFile
4017
4018 * mbase/MReadTree.[h,cc]:
4019 - added a list of TObjects to be called when file in the chain
4020 is changed
4021
4022 * Makefile.conf.linux, Makefile.conf.linux-gnu:
4023 - removed -g flag
4024
4025 * mraw/MRawRunHeader.h:
4026 - fixed return type of GetNumEvents
4027
4028 * mraw/MRawCrateArray.[h,cc]:
4029 - added SetSize which takes care of the size of the array
4030 - changed the access to an unchecked one
4031
4032 * mraw/MRawCrateData.h
4033 - derives from MParContainer now
4034
4035 * mraw/MRawEvtData.[h,cc]:
4036 - made Print const
4037 - changed so, that the arrays are dreed and allocated only
4038 as less as possible
4039
4040 * mraw/MRawFileRead.[h,cc]:
4041 - changed to support faster I/O of MRawEvtData and MRawCrateArray
4042 - added sanity check (warning) to PostProcess
4043
4044 * mraw/MRawFileWrite.cc:
4045 - removed deletion of trees (done by ~TFile)
4046 - switched of AutoSave by use of a big size
4047 - removed '.' from Branch names (each tree contains only one master
4048 branch with equal subbranches)
4049
4050 * macros/readCT1.C:
4051 - fixed a small bug
4052
4053 * manalysis/MCerPhotCalc.cc:
4054 - removed Clear from Process (done by Reset now)
4055
4056 * manalysis/MCerPhotEvt.[h,cc]:
4057 - added reset-function
4058 - some small changes to the code layout
4059
4060 * mmc/MMcFadcHeader.[h,cc], mmc/MMcTrig.[h,cc]:
4061 - chenged constructor to support fName and fTitle
4062
4063 * mbase/MReadTree.cc:
4064 - removes '.' from a branch name now before searching/creating the object
4065
4066
4067
4068 2001/11/01: Thomas Bretz
4069
4070 * mbase/MParContainer.cc:
4071 - removed 'newname' from TObject::Clone call.
4072
4073 * mbase/MParContainer.h:
4074 - layout changes
4075
4076 * mbase/MParList.h:
4077 - changed destructor definition to virtual
4078
4079 * mbase/MReadTree.[h,cc]:
4080 - added initialization for fProgress
4081 - changed output
4082 - move some code to new functions
4083 - branch enabling now checks for the existance of the branch
4084 - veto branch disables the corresponding sub branches now physically
4085 - changed comments
4086
4087 * mdatacheck/MGDisplayAdc.cc:
4088 - added some sanity checks
4089
4090 * meventdisp/MGCamDisplay.cc, meventdisp/MGEvtDisplay.[h,cc],
4091 meventdisp/MGFadcDisp.cc:
4092 - moved some code to MGEvtDisplay
4093
4094 * mhist/MFillH.cc:
4095 - added warning to comment
4096
4097 * mhist/MHFadcCam.[h,cc]:
4098 - added Clone-function. It seems, that this is necessary since
4099 root 3.01
4100
4101 * mhist/MHFadcPix.cc:
4102 - changed axis titles
4103
4104 * mmain/MAnalysis.cc:
4105 - added progress bar
4106
4107 * mmain/MBrowser.[h,cc]:
4108 - added layout hints to fTop1,2,3
4109 - adde Create/DestroyProgrssBar
4110
4111 * mmain/MDataCheck.cc:
4112 - changes to the layout
4113 - disable auto scheme
4114 - added progress bar
4115
4116 * mmain/MMonteCarlo.[h,cc]:
4117 - layout changes
4118 - added progress bar
4119
4120 * mraw/MRawEvtData.cc:
4121 - new sanity check in Draw
4122
4123
4124
4125 2001/11/01: Thomas Bretz
4126
4127 * macros/MagicHillas.C:
4128 - changed Draw to DrawClone
4129
4130 * manalysis/MCerPhotPix.h:
4131 - some layout changes
4132
4133 * mbase/MParList.cc:
4134 - fixed a bug in the dstructor which causes the d'tor to crash when
4135 the owner bit was set
4136 - changed some TCollection loop to macro ForEach
4137
4138 * mbase/MTaskList.cc:
4139 - changed some TCollection loop to macro ForEach
4140
4141 * meventdisp/MGEvtDisplay.[h,cc]:
4142 - added filemenu
4143
4144 * mgui/MCamDisplay.[h,cc], mgui/MHexagon.[h,cc]:
4145 - added SavePrimitive function
4146
4147 * mhist/MHHillas.cc:
4148 - changed 'deg' to '°'
4149
4150 * mmain/MDataCheck.cc:
4151 - changed name of enums for buttons
4152
4153 * Makefile.conf.osf1:
4154 - added some more exclusion flags to get rid of to much informations
4155
4156 * Makefile:
4157 - changed flags of tar from '-cvf' to 'cvf' so that it runs on alpha, too
4158
4159 * mbase/MAGIC.h:
4160 - put brackets around defines, to make it compile on alpha
4161
4162 * mbase/MEvtLoop.cc, mbase/MParList.cc, mbase/MTask.cc,
4163 mgui/MGeomCam.cc, mhist/MHFadcPix.cc, mmc/MMcTrig.cxx:
4164 - removed inline statement, to make it link on alpha
4165
4166
4167
4168 2001/10/31: Thomas Bretz
4169
4170 * Makefile:
4171 - changed MrProper output
4172
4173 * Makefile.conf.general, Makefile.conf.linux,
4174 Makefile.conf.linux-gnu, Makefile.conf.osf:
4175 - added ARCHDEF environment
4176
4177 * manalysis/MHillas.[h,cc]:
4178 - added units
4179
4180 * mbase/BaseLinkDef.h:
4181 - added '+' for MTime
4182
4183 * mbase/MAGIC.h:
4184 - let Linux find gLog when creating dictionary
4185
4186 * mbase/MHtml.h:
4187 - removed include of TNamed
4188
4189 * */Makefile
4190 - reordered *.cc filed to get rid of some 'rootcint' warnings
4191
4192 * mgui/MCamDisplay.cc:
4193 - added SetBorderMode(0)
4194
4195 * mgui/MHexagon.[h,cc]:
4196 - changed Print-output to fit into two lines
4197 - made Print appear in the context menu
4198
4199 * merpp.cc:
4200 - Added MParContainer::Class()->IgnoreTObjectStreamer()
4201
4202 * mbase/MEvtLoop.[h,cc], mbase/MReadTree.[h,cc],
4203 mmain/MAnalysis.[h,cc]:
4204 - added support for a progressbar
4205
4206 * mbase/MFilterList.h:
4207 - added SetOwner-support
4208
4209 * mbase/MLogManip.h:
4210 - added 'dec' manipulator to dbginf
4211
4212 * mbase/MTask.h:
4213 - added GetNumExecutions
4214
4215 * mraw/RawLinkDef.h:
4216 - added '+' for MRawEvtPixelIter, MRawCrateArray, MRawCrateData and
4217 MRawFile[Read,Write]
4218
4219
4220
4221 2001/10/30: Thomas Bretz
4222
4223 * macros/MagicHillas.C
4224 - removed precreated objects
4225
4226 * macros/readCt1.C:
4227 - fixed a bug (-> instead of .)
4228
4229 * *LinDef.h:
4230 - added a '+' to all 'new' classes. 'new' means, that the object
4231 is not yet used in Monte Carlo Files.
4232
4233 * *.h:
4234 - changed defines from CLASS_H to MARS_Class type (like root)
4235
4236 * MMcPedestalCopy.[h,cc]:
4237 - added AddToBranchList stamements
4238
4239 * manalysis/MPedestalPix.h, manalysis/MCerPhotPix.h, mgui/MGeomPix.h:
4240 - changed derivement from TObject to MParContainer to be sure
4241 fBits are not written, without specifying this for any TObject
4242 derived class
4243
4244
4245
4246 2001/10/29: Thomas Bretz
4247
4248 * Makefile.rules:
4249 - changed the output
4250
4251 * macros/rootlogon.C:
4252 - Added IgnorTObjectStreamer
4253
4254 * manalysis/MCT1ReadAscii.cc:
4255 - changed fFileNames to a TList of TNamed objects
4256
4257 * mbase/MArray.h:
4258 - removed include of MArray.h
4259
4260 * mbase/MParContainer.[h,cc]:
4261 - changed fName, fTitle from pointer to static object
4262 - Changed ClassVersion to 0
4263
4264 * mbase/MParList.[h,cc]:
4265 - changed fName, fTitle from pointer to static object
4266 - changed include of TObjArray to a forward declaration
4267 (for faster compilation)
4268 - simplified the code
4269
4270 * mbase/MInputStreamID.[h,cc]:
4271 - changed fStreamId from char* to TString
4272 - Changed ClassVersion to 0
4273
4274 * mbase/MReadTree.[h,cc]:
4275 - changed veto-list to an array of TNamed objects
4276 - implemented auto enabeling
4277
4278 * mbase/MTask.[h,cc]:
4279 - implemented fListOfBranches for auto enabeling
4280
4281 * mbase/MTaskList.[h,cc]:
4282 - changed fName, fTitle from pointer to static object
4283 - changed include of TObjArray to a forward declaration
4284 (for faster compilation)
4285
4286 * mbase/MWriteRootFile.cc:
4287 - changed fName, fTitle from pointer to static object
4288 - set splitlevel in TTree::Branch to default
4289 - changed kSaveNow to kFillTree
4290
4291 * mhist/MFillH.cc:
4292 - changed fName, fTitle from pointer to static object
4293 - check inharitance from MH
4294
4295 * mhist/MH.[h,cc]:
4296 - changed fName, fTitle from pointer to static object
4297 - implementation of simplified static MakeDefCanvas
4298
4299 * mhist/MHFadcCam.h:
4300 - removed include of TH1
4301
4302 * mhist/MHFadcPix.[h,cc]:
4303 - implemented persistent pixid
4304 - get rid of 'fixed string sizes'
4305 - Delete histograms from file structure (SetDirectory)
4306 - changed Root's MakeDefCanvas to TH1::MakeDefCanvas
4307 - removed include of TH1
4308
4309 * mhist/MHHillas.cc
4310 - changed fName, fTitle from pointer to static object
4311 - Delete histograms from file structure (SetDirectory)
4312 - changed Root's MakeDefCanvas to TH1::MakeDefCanvas
4313 - changed DrawClone to DrawCopy
4314
4315 * mhist/MHMcCollectionArea.[h,cc]:
4316 - changed fName, fTitle from pointer to static object
4317 - Delete histograms from file structure (SetDirectory)
4318 - changed Root's MakeDefCanvas to TH1::MakeDefCanvas
4319 - changed DrawClone to DrawCopy
4320 - changed binning to log scale
4321 - removed include of TH1
4322
4323 * mhist/MHMcEnergy.cc, mhist/MHStarMap.cc:
4324 - changed fName, fTitle from pointer to static object
4325 - Delete histograms from file structure (SetDirectory)
4326 - changed Root's MakeDefCanvas to TH1::MakeDefCanvas
4327
4328 * manalysis/MCerPhotEvt.cc, manalysis/MHillas.cc,
4329 manalysis/MHillasCalc.cc, manalysis/MImgCleanStd.cc,
4330 manalysis/MMcPedestalCopy.cc, manalysis/MPedestalCam.cc,
4331 mbase/MClone.cc, mbase/MPrint.cc, mbase/MTime.h,
4332 mbase/MWriteAsciiFile.cc, mgui/MGeomCam.cc, mhist/MHFadcCam.cc,
4333 mhist/MHMcRate.cc, mmc/MMcTrig.cxx, mraw/MRawCrateArray.cc,
4334 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawFileRead.cc:
4335 - changed fName, fTitle from pointer to static object
4336
4337 * manalysis/MCerPhotCalc.cc, manalysis/MPedCalcPedRun.cc,
4338 mmontecarlo/MMcThresholdCalc.[h,cc],
4339 mmontecarlo/MMcTriggerRateCalc.[h,cc],
4340 mmontecarlo/MMcCollectionAreaCalc.[h,cc]:
4341 - changed fName, fTitle from pointer to static object
4342 - changed to use auto enabling scheme
4343
4344 * macros/threshold.C, macros/collarea.C, macros/trigrate.C:
4345 - removed UseLeaf
4346
4347 * macros/CT1Hillas.C, macros/readMagic.C:
4348 - made run again
4349
4350 * mraw/MRawFileWrite.cc:
4351 - changed fName, fTitle from pointer to static object
4352 - changed TTree::Branch to use default split level (99)
4353 - added the missing important '.' to the Branch names!
4354
4355 * mraw/MRawRunHeader.[h,cc]:
4356 - changed fName, fTitle from pointer to static object
4357 - implemented enum for Run Type
4358
4359
4360
4361 2001/10/26: Thomas Bretz
4362
4363 * Makefile.rules:
4364 - changed output
4365
4366 * readraw.cc:
4367 - changed name and description in TROOT
4368 - removed argument in MMcEvt::Print()
4369
4370 * manalysis/MCerPhotEvt.[h,cc], manalysis/MCerPhotPix.[h,cc],
4371 manalysis/MHillas.[h,cc], mmc/MMcEvt.[hxx,cxx],
4372 mmc/MMcFadcHeader.[hxx,cxx], mmc/MMcTrig.[hxx,cxx],
4373 mmc/MMcTrigHeader.[hxx,cxx]:
4374 - according to root 3.01 made Print const
4375
4376 * mbase/BaseLinkDef.h:
4377 - added MPrint
4378
4379 * mbase/MPrint.[h,cc]:
4380 - added
4381
4382 * mbase/MClone.[h,cc]:
4383 - changed MParContainer to a more general TObject
4384
4385 * mbase/Makefile:
4386 - MPrint.cc added
4387
4388 * meventdisp/MGCamDisplay.[h,cc], meventdisp/MGEvtDisplay.[h,cc],
4389 meventdisp/MGFadcDisp.[h,cc]:
4390 - introduced fInitOk for the case PreProcessing failed
4391
4392 * mmain/MMonteCarlo.cc:
4393 - added correction for use of several trigger conditions
4394 - speedup threshold calc by usage of UseLeaf
4395
4396 * magiclogo.xpm, marslogo.xpm:
4397 - changed
4398
4399 * mmain/MMonteCarlo.cc:
4400 - added a workaround for the <TClass::TClass> no dictionary for MMc*
4401 problem
4402
4403 * mbase/MWriteRootFile.[h,cc]:
4404 - simplified code by removing MRootFileTree class
4405
4406 * mbase/MLog.cc:
4407 - changed char[len+1] to 'new' statement
4408
4409
4410
4411
4412 2001/10/23: Thomas Bretz
4413
4414 * mbase/MLog.[h,cc]:
4415 - replaced usage of tmpnam by mkstemp
4416
4417 * mgui/MCamDisplay.[h,cc]:
4418 - Paint function added which maintains the aspect ratio of the image
4419 - DrawPhotErr removed
4420 - removed gPad->Clear, so that we can draw into pads not only
4421 canvases
4422
4423 * mhist/MFillHFadc.[h,cc], mhist/MFillHHillas.[h,cc],
4424 mhist/MFillHStarMap.[h,cc]:
4425 - removed
4426
4427 * mmontecarlo/MMcTriggerRateCalc.[h,cc]:
4428 - removed unused spectral index and flux
4429
4430 * mmontecarlo/MMcThesholdCalc.[h,cc],:
4431 mbase/MParList.[h,cc]:
4432 - fixed the Dimension handling
4433
4434 * mmontecarlo/MMcTriggerRateCalc.[h,cc],
4435 - fixed the Dimension handling
4436 - added destructor
4437
4438 * macros/trigrate.C:
4439 - fixed some small things
4440 - accelerated by use of MReadTree::UseLeaf
4441
4442 * mhist/MHMcCollectionArea.h:
4443 - changed default argument of DrawClone from NULL to "".
4444 NULL caused the interpreter to crash.
4445
4446 * mbase/MFilterList.[h,cc], mbase/MParContainer.[h,cc],
4447 mbase/MParList.[h.cc], mbase/MTime.[h,cc],
4448 mgui/MGeomCam.[h,cc], mgui/MGeomPix.[h,cc],
4449 mgui/MHexagon.[h,cc], mhist/MHMcEnergy.[h,cc],
4450 mhist/MHMcRate.[h,cc], mraw/MRawCrateData.[h,cc],
4451 mraw/MRawEvtHeader.[h,cc], mraw/MRawRunHeader.[h,cc]:
4452 - according to root 3.01 I made Print() const
4453
4454 * mdatacheck/MViewAdcSoectra.[h,cc], mdatacheck/MShowSpect.[h,cc]:
4455 - removed
4456
4457 * mbase/MReadTree.cc:
4458 - removed default argument from GetEntry-call
4459
4460 * mbase/MTask.[h,cc]:
4461 - introduced mapping function for (Pre/Post)&Process
4462 - according to root 3.01 I made Print() const
4463 - added PrintStatistics
4464 - added call counter
4465
4466 * mbase/MTaskList.[h,cc]:
4467 - adapted to new MTask mapping functions
4468 - according to root 3.01 I made Print() const
4469 - added PrintStatistics
4470 - moved some functionality to MTask-Mapper functions
4471
4472 * mmain/MMonteCarlo.cc:
4473 - adapted to some changes in other classes
4474 - some small simplifications
4475 - accelerated, by use of UseLeaf
4476 - workaround for the ButtonGroup/Button delete bug
4477
4478 * mmain/MAnalysis.cc:
4479 - workaround for the ButtonGroup/Button delete bug
4480
4481
4482
4483 2001/10/23: Thomas Bretz
4484
4485 * macros/dohtml.C:
4486 - changed macro names
4487
4488 * macros/getCollArea.C:
4489 - renamed to collarea.C
4490 - make use of new fast MReadTree
4491
4492 * macros/getRate.C:
4493 - renamed to trigrate.C
4494
4495 * macros/getThreshold.C:
4496 - renamed to threshold.C
4497
4498 * Makefile.depend:
4499 - removed
4500
4501 * mgui/MCamDisplay.[h,cc]:
4502 - fixed wrong usage of new operator in TClonesArray
4503 - the aspect ratio of the Canvas is used now to display geometries
4504 correctly (no 'small CT1 camera anymore)
4505 - replaced include of MCerPhotPix by a forward declaration
4506 - replaced include of MHexagon by a forward declaration
4507
4508 * mgui/MGeomCam.[h,cc]:
4509 - added GetMaxRadius()-function
4510 - added CalcMaxRadius()-function
4511 - replaced include of MGeomPix by a forward declaration
4512 - replaced include of TObjArray by a forward declaration
4513
4514 * mgui/MGeomCamMagic.cc, mgui/MGeomCamCT1.cc:
4515 - call CalcMaxRadius in the constructor
4516
4517
4518
4519 2001/10/22: Thomas Bretz
4520
4521 * mhist/MH*.[h,cc]:
4522 - changed DrawClone according to root 3.01/06 to 'const'
4523
4524
4525
4526 2001/10/16: Thomas Bretz
4527
4528 * mbase/MReadTree.[h,cc]:
4529 - added some output statements
4530 - added comments
4531 - added UseLeaf
4532 - changed AddFile to Int_t
4533 - simplified GetEntry call
4534
4535 * mgui/MGeomCam.[h,cc], MGeomCamCT1.[h,cc], MGeomCamMagic.[h,cc]:
4536 - added come comments
4537 - removed Draw-function
4538
4539 * mars.cc:
4540 - Changed name of TROOT object to 'mars'
4541
4542 * merpp.cc:
4543 - changed name of TROOT object to 'merpp'
4544 - added some more ouput
4545
4546 * mbase/MBaseLinkDef.h:
4547 - added MRootFileBranch
4548 - added MRootFileTree
4549
4550 * mgui/MGeomPix.cc, mbase/MClone.cc, mraw/MRawRunHeader.cc:
4551 - added comments
4552
4553 * mbase/MEvtLoop.cc:
4554 - added missing include
4555 - added another time output
4556
4557 * mbase/MWriteRootFile.cc:
4558 - added ClassImp
4559
4560 * mhist/MFillH.cc, mmontecarlo/MMcCollectionAreaCalc.cc:
4561 - changed output
4562
4563 * mhist/MHMcCollectionArea.cc:
4564 - small fixes
4565 - changed error calculation according to Ciro
4566
4567 * macros/CT1Hillas.C:
4568 - fixes some bugs (typos)
4569
4570
4571
4572 2001/10/05: Thomas Bretz
4573
4574 * manalysis/MHillas.cc, manalysis/MImgCleanStd.cc, mbase/MClone.[h,cc],
4575 mbase/MFilterList.h, mbase/MWriteFile.h, mbase/MWriteRootFile.h,
4576 mdatacheck/MGDisplayAdc.cc, meventdisp/MGCamDisplay.cc,
4577 meventdisp/MGCamDisplay.h, meventdisp/MGEvtDisplay.h,
4578 mgui/MGeomPix.h, mhist/MFillH.h, mhist/MHHillas.h,
4579 mmain/MAnalysis.h, mmain/MBrowser.h, mmain/MCameraDisplay.h,
4580 mmain/MDataCheck.h, mmain/MEvtDisp.h, mmain/MMonteCarlo.h,
4581 mraw/MRawFileRead.cc
4582 - comments updated
4583
4584 * mbase/MFilter.[h,cc]:
4585 - made IsExpressionTrue abstract
4586
4587 * meventdisp/MGEvtDisplay.cc:
4588 - fixed a bug that only every second event was displayed
4589
4590 * meventdisp/MGFadcDisp.[h,cc]:
4591 - reorganized code (changing pixel number drawed the histogram twice)
4592
4593 * mgui/MCamDisplay.[h,cc]:
4594 - added fDrawingPad to make sure that all output goes into the same pad
4595
4596 * mhist/HistLinkDef.h, mhist/Makefile:
4597 - removed old MFillH* classes
4598
4599
4600
4601 2001/10/02: Thomas Bretz
4602
4603 * mbase/MClone.[h,cc],
4604 meventdisp/MGCamDisplay.[h,cc],
4605 meventdisp/MGEvtDisplay.[h,cc],
4606 mmain/MCameraDisplay.[h,cc]:
4607 - added
4608
4609 * macros/readMagic.C:
4610 - fixed a "'->' and '.' mixed bug"
4611
4612 * manalysis/MCT1ReadAscii.cc:
4613 - added initialisation of fIn
4614
4615 * manalysis/MCerPhotEvt.[h,cc]:
4616 - made IsPixelExisting const
4617 - made IsPixelCore const
4618 - made IsPixelUsed const
4619 - made GetNumPhotons[Min,Max] const
4620
4621 * mbase/BaseLinkDef.h, mbase/Makefile:
4622 - added MClone
4623
4624 * mbase/MEvtLoop.[h,cc], mbase/MParList.[h,cc], mbase/MTaskList.[h,cc]:
4625 - added SetOwner-support
4626
4627 * mdatacheck/DataCheckLinkDef.h, mdatacheck/Makefile:
4628 - removed MShowSpect
4629 - removed MViewAdcSpect
4630
4631 * mdatacheck/MDumpEvtHeader.cc:
4632 - added missing descriptions
4633
4634 * mdatacheck/MGDisplayAdc.[h,cc]:
4635 - small changes
4636
4637 * meventdisp/EvtDispLinkDef.h:
4638 - added MGEvtDisplay
4639 - added MGCamDisplay
4640
4641 * meventdisp/MGFadcDisp.[h,cc]:
4642 - derived from MGEvtDisplay
4643 - most of the code moved to MGEvtDisplay to support MGCamDisplay, too
4644
4645 * meventdisp/Makefile:
4646 - added MGCamDisplay
4647
4648 * mgui/MCamDisplay.[h,cc]:
4649 - cleaned
4650 - reorganized
4651
4652 * mgui/MHexagon.cc:
4653 - added missing descriptions
4654
4655 * mhist/MHFadcPix.cc:
4656 - reorganized some code in the constructor which creates the 'names'
4657
4658 * mhist/MHHillas.cc, mhist/MHMcCollectionArea.cc,
4659 mhist/MHMcEnergy.cc, mhist/MHStarMap.cc:
4660 - Draw-function supports a default canvas now
4661
4662 * mmain/MDataCheck.cc:
4663 - added/rorganized comments
4664 - removed usage of MViewAdcSpectra
4665
4666 * mmain/MMars.[h,cc]:
4667 - added new "Camera Display" Button
4668
4669 * mmain/MainLinkDef.h, mmain/Makefile:
4670 - added MCameraDisplay
4671
4672
4673
4674 2001/09/28: Thomas Bretz
4675
4676 * macros/getRate.C:
4677 - changed TObjArray to a non-pointer object
4678 - added Printing of the result at the end of the macro
4679
4680 * mhist/MHMcCollectionArea.[h,cc], mhist/MHMcEnergy.[h,cc]:
4681 - added DrawClone
4682
4683 * mhist/MHMcRate.[h,cc]:
4684 - added a dummy for DrawClone
4685
4686 * mmain/MMonteCarlo.[cc, h]:
4687 - added Gui elements
4688 - added CalculateCollectionArea (not yet tested)
4689 - added CalculateTriggerRate (not yet tested)
4690 - added Threshold (not yet tested)
4691
4692 * mmontecarlo/MMcTriggerRateCalc.cc:
4693 - removed output stuff from PostProcessing
4694
4695 * meventdisp/MGFadcDisp.[h,cc], mdatacheck/MGDisplayAdc.[h,cc]:
4696 - reorganized code (constructor)
4697 - reorganized deletion of gui objects
4698 - fixed many, many memory leaks
4699
4700
4701
4702 2001/09/27: Thomas Bretz
4703
4704 * mmain/MBrowser.cc:
4705 - added comments
4706
4707 * mmain/MAnalysis.[h,cc]:
4708 - added entry field for cleaning levels
4709 - restructured code a bit
4710
4711 * mhist/MFillH.cc:
4712 - fixed missing initialization of member variables in Init
4713
4714 * mhist/MHHillas.[h,cc]:
4715 - Added comments
4716 - Added DrawClone
4717 - Removed kCanDelete bits from Draw function
4718
4719 * mhist/MHStarMap.[h,cc]:
4720 - Added comments
4721 - Added DrawClone
4722 - moved some code from the Draw-functions to PrepareDrawing
4723
4724
4725
4726 2001/09/26: Thomas Bretz
4727
4728 * mmain/MMars.[cc,h], mmain/MBrowser.[cc,h], MDataCheck.[cc,h],
4729 mmain/MEvtDisp.[cc,h], mmain/MMonteCarlo.[cc,h]:
4730 - reorganized code (constructor)
4731 - reorganized deletion of gui objects
4732 - fixed many, many memory leaks
4733 - small changes in layout
4734
4735 * mmain/MAnalysis.[h,cc]:
4736 - added
4737
4738 * macros/*:
4739 - added Copyright notice
4740 - added some small sanity checks
4741
4742 * macros/MagicHillas.C:
4743 - fixed '->' bug
4744 - changed MFillHStarMap to MFillH
4745
4746 * mbase/MReadTree.cc, mraw/MRawFileWrite.cc:
4747 - removed an old debug statement
4748
4749 * mmain/MMars.cc:
4750 - added new Analysis functionality
4751
4752 * mmain/MainLinkDef.h:
4753 - addded MAnalysis
4754
4755 * mmain/Makefile:
4756 - added MAnalysis.cc
4757
4758 * mmc/McLinkDef.h:
4759 - removed nonsens define statement
4760
4761
4762
4763 2001/09/25: Thomas Bretz
4764
4765 * Makefile:
4766 - changed make tar so that 'CVS/Root' isn't added to the tar-file anymore
4767 It contains the origin (CVSROOT) of the repository and my confuse
4768 people triing to commit changed files from such an archive to
4769 the repository
4770
4771 * mmain/MBrowser.[cc,h]:
4772 - reorganized code (constructor)
4773 - reorganized deletion of gui objects
4774 - fixed many, many memory leaks
4775
4776 * mmain/MMars.[cc,h]:
4777 - reorganized code (constructor)
4778 - reorganized deletion of gui objects
4779 - fixed many, many memory leaks
4780
4781
4782
4783 2001/09/20: Thomas Bretz
4784
4785 * mbase/MLog.[h,cc]:
4786 - made working with Cosy
4787 - fixed gui stuff to work like expected
4788
4789 * manalysis/MCerPhotPix.h:
4790 - replaced TROOT.h by MAGIC.h
4791
4792 * mfilter/MFTriggerLvl1.h:
4793 - added description
4794
4795
4796
4797 2001/09/20: Thomas Bretz
4798
4799 * released Version 0.4
4800
4801 * mevtdisp/MGFadcDisp.cc, mmain/MMars.cc:
4802 - switched to root version >= 3.00
4803
4804 * Makefile.conf.linux:
4805 - added to support the new Linux distributions
4806
4807 * .rootrc:
4808 - removed references to MARSSYS
4809
4810
4811
4812 2001/09/13: Thomas Bretz
4813
4814 * Makefile.conf.linux-gnu:
4815 - removed "-Woverloaded-virtual". it doesn't really help
4816
4817
4818
4819 2001/08/02: Thomas Bretz
4820
4821 * macros/getRate.C:
4822 - make use of new stylish lists of containers
4823
4824
4825 * macros/CT1Hillas.C, macros/getCollArea.C:
4826 - make use of return value of Eventloop
4827
4828 * macros/merpp.C:
4829 - changed return type to void
4830
4831
4832
4833 2001/07/23: Thomas Bretz
4834
4835 * mbase/MParList.cc:
4836 - redifinition of default argument: fixed
4837
4838
4839
4840 2001/07/23: Thomas Bretz
4841
4842 * mmontecarlo/MMcThresholdCalc.[cc,h]:
4843 - changed PreProcess action to new stylish lists of containers
4844
4845 * mhist/Makefile:
4846 - removed MEnergies.cc
4847
4848 * mhist/HistLinkDef.h:
4849 - removed MEnergies.cc
4850
4851 * mbase/MReadTree.cc:
4852 - removed a bug which causes MReadTree to show strange behaviour.
4853 We cannot use GetBranch()->SetAddress() we have to use
4854 SetBranchAddress.
4855
4856 * macros/MagicHillas.C:
4857 - changed to new stylish histogram fillers.
4858
4859 * mhist/MHMcRate.cc:
4860 - some simplifications to the constructors
4861 - some accelerations of the rate calculation
4862
4863 * mhist/MHHillas.C:
4864 - added axis descriptions (thanks to Rudy)
4865
4866
4867
4868 2001/07/20: Thomas Bretz
4869
4870 * mhist/MH.cc:
4871 - added comments
4872
4873 * mhist/MFillH.cc:
4874 - added comments
4875
4876 * mbase/MParList.[h,cc]:
4877 - Added AddToList from a TObjArray
4878 - Added GetClassName
4879 - Added GetObjName
4880 - Added FindObjectList
4881 - Added FindCreateObjList
4882 - Added CreateObjList
4883
4884 * mhist/MHMcEnergies.[h,cc]:
4885 - deleted
4886
4887 * mhist/MHMcEnergy.[h,cc]:
4888 - rewrote constructor in a way that MHMcEnergies isn't needed anymore
4889 - added a SetName function which replaces the old constructor somehow
4890
4891 * macros/getThreshold.C:
4892 - make use of some new features
4893
4894
4895
4896 2001/07/19: Thomas Bretz
4897
4898 * mbase/MEvtLoop.cc:
4899 - added comments
4900
4901 * mbase/MTaskList.cc:
4902 - changed the wrong 'break' for kCONTINUE into 'return kTRUE'
4903
4904 * mhist/MH.[cc,h]
4905 - added
4906
4907 * mhist/MFillH.[cc,h]
4908 - added
4909 - in principal MFillHHillas, MFillHFadc and MFillHStarMap
4910 can be deleted now
4911
4912 * mhist/HistLinkDef.h:
4913 - added MH
4914 - added MFillH
4915
4916 * mhist/MFillHFadc.cc:
4917 - moved source for filling to corresponding histogram class
4918
4919 * mhist/MFillHHillas.cc:
4920 - included MHillas.h
4921
4922 * mhist/MHFadcCam.[cc, h]:
4923 - added Fill
4924 - made FillHi, FillLo private
4925
4926 * mhist/MHHillas.[cc, h], mhist/MHStarMap.[h,cc]:
4927 - changed Fill function to new style
4928 - derived class from MH
4929
4930 * mhist/Makefile:
4931 - added MH.cc
4932 - added MFillH.cc
4933
4934
4935
4936 2001/07/18: Oscar Blanch
4937
4938 * macros/getRate.C:
4939 - Macro to compute the trigger rate from a MonteCarlo file
4940
4941 * mhist/MHMcRate.[h,cc]:
4942 - Container to store trigger rate information
4943 - Draw() functin member to be implemented
4944
4945 * mmontecarlo/MMcTriggerRateCalc.[h,cc]:
4946 - Task to compute trigger rate
4947
4948
4949
4950 2001/07/13: Thomas Bretz
4951
4952 * mbase/MEvtLoop.[h,cc]:
4953 - Added a result value to Eventloop to be able to detect if the
4954 execution was successfull
4955 - changes postProcess to return the return value from
4956 MTaskList::PostProcess
4957
4958 * mbase/MParList.cc:
4959 - FindCreateObj removes now a 'dot' from the end of an indexed
4960 object name like "Events;7."
4961
4962 * mbase/MReadTree.cc:
4963 - small changes to the output
4964
4965 * mbase/MTask.[h,cc]:
4966 - added Preprocessed flag. This enables the tasklist to only postprocess
4967 already preprocessed tasks
4968
4969 * mbase/MTaskList.cc:
4970 - don't postprocess non preprocessed tasks
4971
4972 * mhist/MHMcCollectionArea.cc:
4973 - added descriptions to histrograms
4974 - changed names of histograms
4975 - added drawing of canvas to Draw-functions
4976
4977 * mhist/MHMcEnergy.[h,cc]:
4978 - added variables to store the calculated result
4979 - changed names and titles of histogram
4980 - added axis titles to histogram
4981 - moved result calculation into fit-function
4982
4983 * mmontecarlo/MMcCollectionAreaCalc.cc:
4984 - added name of input container to be able to process another
4985 container than "MMcTrig"
4986
4987 * mmontecarlo/MMcThresholdCalc.cc:
4988 - removed trailing dot from container name creation
4989
4990 * mhist/MMcThresholdCalc.cc:
4991 - removed a wrong '.' behind the number when processing more than
4992 one trigger condition
4993
4994 * mraw/MRawRunHeader.cc:
4995 - added "Monte Carlo Data" as runtype
4996
4997
4998
4999 2001/07/10: Thomas Bretz
5000
5001 * mhist/MHMcEnergy.h:
5002 - renamed SetBins to SetNumBins
5003
5004 * mmontecarlo/MMcThresholdCalc.cc:
5005 - changed style of comments
5006 - moved sqrt(2) from Postprocess to header.
5007
5008 * mmontecarlo/MMcEnerHisto.[cc,h], mmontecarlo/MMcEnerThre.[cc,h],
5009 mmontecarlo/MMcEnerThreCalc.[cc,h]:
5010 - removed
5011
5012 * mmontecarlo/MCollArea.[cc,h], mmontecarlo/MCollAreaTrigger.[cc,h]:
5013 - removed
5014
5015
5016
5017 2001/07/09: Thomas Bretz
5018
5019 * mbase/MParList.cc:
5020 - made handling of already existing containers in AddToList a bit
5021 more convinient
5022
5023 * mbase/MTaskList.[h,cc]:
5024 - added come comments
5025 - made handling of already existing tasks in AddToList a bit
5026 more convinient
5027 - Added name-argument to constructor
5028
5029 * mraw/MRawFileRead.[cc, h]:
5030 - move file-open check from constructor to PreProcess
5031 - added variable for filename
5032
5033 * mraw/MRawFileWrite.[cc,h]:
5034 - moved fOut->Write from PostProcess to destructor
5035 - removed PostProcess
5036
5037
5038
5039 2001/07/06: Thomas Bretz
5040
5041 * mfilter/FilterIncl.h, mfilter/FilterLinkDef.h,
5042 mfilter/MFTriggerLvl1.[h,cc], mfilter/mfilter/Makefile:
5043 - added
5044
5045 * Makefile
5046 - mfilter added
5047
5048 * Makefile.conf.linux-gnu:
5049 - added some warning options
5050
5051 * Makefile.conf.osf1:
5052 - enhanced warnings
5053
5054 * manalysis/MCerPhotEvt.cc:
5055 - removed a small buf from the constructor
5056
5057 * BaseLinkDef.h:
5058 - added MFilter
5059 - added MFilterList
5060
5061 * mbase/MLog.[h,cc]:
5062 - added a non-empty copy constructor to make cxx happy
5063
5064 * mbase/MParList.[h,cc]:
5065 - added second overload-function FindObject
5066
5067 * mbase/MTask.h:
5068 - added all Filter stuff
5069
5070 * mbase/MTaskList.cc:
5071 - changed debug output
5072 - added filter-stuff to Process
5073
5074 * mbase/MTaskList.h:
5075 - changed Print default option from NULL to ""
5076
5077 * mbase/Makefile:
5078 - added MFilter
5079 - added MFilterList
5080
5081 * mhist/MFillHFadc.cc:
5082 removed a small bug in the PreProcessing
5083
5084 * manalysis/MCerPhotEvt.h, manalysis/MHillas.cc, manalysis/MHillas.h,
5085 manalysis/MImgCleanStd.cc, manalysis/MPedestalCam.h, mgui/MGeomCam.h,
5086 mhist/MFillHHillas.h, manalysis/MHillasCalc.h, manalysis/MCerPhotCalc.h,
5087 manalysis/MImgCleanStd.h, mhist/MFillHStarMap.h, mhist/MHHillas.cc,
5088 mhist/MHHillas.h, mhist/MHStarMap.cc, mhist/MHStarMap.h,
5089 mmc/MMcFadcHeader.hxx, mmc/MMcFadcHeader.hxx, mmc/MMcTrig.hxx,
5090 mmontecarlo/MMcThresholdCalc.h:
5091 - made more const-correct
5092
5093 * manalysis/MCT1ReadAscii.cc, manalysis/MCerPhotCalc.cc,
5094 manalysis/MHillasCalc.cc, manalysis/MImgCleanStd.cc,
5095 manalysis/MMcPedestalCopy.cc, manalysis/MPedCalcPedRun.cc,
5096 mhist/MFillHFadc.cc, mhist/MFillHHillas.cc, mhist/MFillHStarMap.cc,
5097 mmontecarlo/MMcThresholdCalc.cc, mraw/MRawFileRead.cc,
5098 mraw/MRawFileWrite.cc:
5099 - added comments
5100
5101 * manalysis/MCT1ReadAscii.cc, manalysis/MCerPhotCalc.cc,
5102 manalysis/MCerPhotPix.cc, manalysis/MHillas.cc,
5103 manalysis/MHillasCalc.cc, manalysis/MImgCleanStd.cc,
5104 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalCopy.h,
5105 manalysis/MPedCalcPedRun.cc, manalysis/MPedestalCam.cc,
5106 manalysis/MPedestalPix.cc,
5107 mbase/MArray.cc, mbase/MArrayB.cc, mbase/MArrayS.cc, mbase/MEvtLoop.cc,
5108 mbase/MLog.cc, mbase/MParList.cc, mbase/MReadTree.cc, mbase/MTask.cc,
5109 mbase/MTime.cc, mbase/MWriteAsciiFile.cc, mbase/MWriteFile.cc,
5110 mbase/MWriteRootFile.cc,
5111 mhist/MFillHFadc.cc, mhist/MFillHFadc.cc, mhist/MFillHHillas.cc,
5112 mhist/MFillHStarMap.cc, mhist/MHFadcCam.cc, mhist/MHFadcPix.cc,
5113 mhist/MHHillas.cc, mhist/MHMcCollectionArea.cc, mhist/MHMcEnergies.cc,
5114 mhist/MHMcEnergy.cc, mhist/MHStarMap.cc, mraw/MRawCrateArray.cc,
5115 mraw/MRawCrateData.cc, mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc,
5116 mraw/MRawEvtPixelIter.cc, mraw/MRawFileRead.cc,
5117 mraw/MRawFileWrite.cc, mraw/MRawRunHeader.cc:
5118 - added semicolon after ClassImp to make my editor happy
5119
5120 * mmain/MEvtDisp.cc:
5121 - removed a wrong comma in the enumerations
5122
5123 * mmontecarlo/MMcThresholdCalc.cc:
5124 - made compile on osf by removing brackets in new steatement (constructor)
5125
5126
5127
5128 2001/07/05: Thomas Bretz
5129
5130 * macros/CT1Hillas.C:
5131 - changed the wrong pointers to dots.
5132
5133 * macros/getThreshold.C:
5134 - added some comments
5135 - removed the canvas creation
5136 - drawing replaced by a loop
5137 - changed trigger conditions to 1 (should work with any MC file)
5138
5139 * macros/readMagic.C:
5140 - changed the event counter to the number of the event in the file
5141 - removed icound
5142
5143 * manalysis/MPedCalcPedRun.cc, manalysis/MCerPhotCalc.cc,
5144 mbase/MParContainer.cc, mbase/MParContainer.h, mbase/MParList.cc,
5145 mbase/MParList.h, mbase/MTaskList.cc, mbase/MWriteAsciiFile.cc,
5146 mbase/MWriteRootFile.cc, mhist/MFillHFadc.cc, mhist/MFillHHillas.cc,
5147 mhist/MFillHStarMap.cc,
5148 - changed HasChanged to ReadyToSave
5149
5150 * mbase/MReadTree.cc:
5151 - added some comments
5152
5153 * mhist/MHMcEnergies.h:
5154 - fixed bug in []-operator
5155
5156 * mhist/MHMcEnergy.cc:
5157 - added canvas creation to draw function
5158
5159 * mmontecarlo/MMcThresholdCalc.cc:
5160 - fixed a bug in the constructor
5161
5162
5163
5164 2001/06/20: Thomas Bretz
5165
5166 * macros/merpp.C:
5167 - fixed type in comment
5168
5169 * manalysis/MHillas.cc:
5170 - fixed 'FIXME' comment
5171
5172 * mbase/MWriteFile.[h,cc]:
5173 - added
5174
5175 * mbase/MWriteRootFile.[h,cc]:
5176 - added
5177
5178 * mbase/BaseLinkDef.h:
5179 - Added MWriteFile
5180 - Added MWriteRootFile
5181
5182 * mbase/MEvtLoop.cc:
5183 - fixed the counting in the eventloop
5184
5185 * mbase/MWriteAsciiFile.[h,cc]:
5186 - changed class that it is based on MWriteFile now
5187
5188 * mbase/Makefile:
5189 - added MWriteFile
5190 - added MWriteRootFile
5191
5192 * mhist/MFillHFadc.[h,cc]:
5193 - added set for HasChanged (new PostProcess)
5194
5195 * mhist/MFillHHillas.cc:
5196 - added set for HasChanged (new PostProcess)
5197
5198 * mhist/MFillHStarMap.cc:
5199 - added set for HasChanged (new PostProcess)
5200
5201 * mhist/MHHillas.cc:
5202 - Set kCanDelete to make sure, that the histograms are deleted
5203 together with the canvas
5204
5205 * mraw/MRawFileWrite.[h,cc]:
5206 - changed the handling of opening, closing and checking file
5207
5208
5209
5210 2001/06/13: Thomas Bretz
5211
5212 * ./.../*.h:
5213 - added some comments and corrected some descriptions.
5214
5215 * mbase/MParContainer.[h,cc]:
5216 - added a 'dummy' function for AsciiRead, AsciiWrite
5217
5218 * mbase/MWriteAsciiFile.[h,cc]:
5219 - added new constructor (specify directly the pointer to the class)
5220
5221 * mgui/MHexagon.cc:
5222 - made Copy-function more readable
5223
5224 * mgui/MParContainer.cc:
5225 - made Copy-function more readable
5226
5227 * mhist/MHMcEnergies.[h,cc]:
5228 - files added as a container to make handling of several MHMcEnergy easier
5229
5230 * mbase/MAGIC.h:
5231 - encapsulated include of TROOT
5232
5233 * mbase/MTaskList.cc:
5234 - added SetHasChange and Reset to PostProcess
5235
5236 * mhist/HistLinkDef.h
5237 - added MHMcEnergies
5238
5239 * mhist/MHMcEnergy.[h,cc]:
5240 - added name and title to constructor
5241 - added number to name of container
5242
5243 * mmontecarlo/MMcThresholdCalc.cc:
5244 - corrected typo in creation of the container names
5245
5246 * mraw/MRawEvtData.cc:
5247 - Set kCanDelete in Draw function
5248
5249
5250
5251 2001/06/12: Thomas Bretz
5252
5253 * mmontecarlo/MMcEnerThreCalc.[cc,h]
5254 - copied to mmontecarlo/MMcThresholdCalc.[cc,h]
5255
5256 * mmontecarlo/MMcEnerThreHistos.[h,cc]
5257 - copied to mmhist/MHMcEnergy.[h,cc]
5258
5259 * mbase/Makefile:
5260 - added MWriteAsciiFile.cc
5261
5262 * mhist/HistIncl.h:
5263 - added TF1.h
5264
5265 * mhist/HistLinkDef.h:
5266 - added MHMcEnergy
5267
5268 * mhist/Makefile
5269 - added MHMcEnergy
5270
5271 * mmontecarlo/MCollArea.h:
5272 - fixed typo in ifndef
5273
5274 * mmontecarlo/Makefile:
5275 - added MMcThresholdCalc.cc
5276 - removed MMcEnerHisto.cc
5277 - removed MMcEnerThre.cc
5278 - removed MMcEnerThreCalc.cc
5279
5280 * mmontecarlo/MonteCarloLinkDef.h:
5281 - added MMcThresholdCalc.cc
5282 - removed MMcEnerHisto.cc
5283 - removed MMcEnerThre.cc
5284 - removed MMcEnerThreCalc.cc
5285
5286 * mbase/MWriteAsciiFile.[h,cc]:
5287 - added
5288
5289 * manalysis/MCT1ReadAscii.h:
5290 - removed fFileName from class definition
5291
5292 * manalysis/MCerPhotCalc.cc:
5293 - use of SetHasChanged added
5294
5295 * manalysis/MHillas.[h,cc]:
5296 - Reset added
5297 - AsciiRead added
5298 - AsciiWrite added
5299 - use of SetHasChanged added
5300
5301 * manalysis/MPedCalcPedRun.[h,cc]:
5302 - made fNumHiGainSamples a class member
5303 - renamed some member functions
5304 - made the 'internal' member functions private
5305 - added SetHasChanged
5306 - made these functions const
5307
5308 * mbase/BaseLinkDef.h
5309 - MWriteAsciiFile added
5310
5311 * mbase/MEvtLoop.cc:
5312 - some small changes to the logging output
5313
5314 * mbase/MParContainer.cc:
5315 - fHasChanged added
5316
5317 * mbase/MParContainer.h:
5318 - Reset prototype added
5319 - HasChanged added
5320 - SetHasChanged added
5321
5322 * mbase/MParList.[cc,h]:
5323 - SetHasChanged added
5324 - Reset added
5325
5326 * mbase/MTaskList.cc:
5327 - Process: call SetHasChanged before looping
5328 - Process: call Reset before looping
5329
5330 * mbase/MTaskList.h:
5331 - fParList added to class definition
5332
5333
5334
5335 2001/04/27: Thomas Bretz
5336
5337 * macros/merpp.C:
5338 - made the merpp-macro Mars 0.3 compatible
5339
5340
5341
5342 2001/04/19: Thomas Bretz
5343
5344 * mbase/MParList.cc:
5345 - added stripping of the string after last semicolon (classname)
5346
5347 * mbase/MReadTree.cc:
5348 - added Veto funtionality to PreProcess
5349 - added HasVeto
5350 - added fVetoList
5351 - added VetoBranch
5352
5353
5354
5355 2001/04/18: Thomas Bretz
5356
5357 * mbase/MHtml.[cc.h]:
5358 - Added
5359
5360 * mbase/*.cc:
5361 - changed comments of member functions to new MHtml-Style
5362
5363
5364
5365 2001/04/09: Thomas Bretz
5366
5367 * mbase/MParList.cc:
5368 - Added the possibility to specify a different object name in
5369 FindCreateObj
5370
5371 * .rootrc:
5372 - changed the style for the html documentation
5373
5374 * macros/dohtml.C:
5375 - added SetXwho
5376
5377 * (*.cc):
5378 - added the copyright comment block
5379
5380 * mgui/MGeomCamMagic.cc:
5381 - added some comments to all these numbers
5382
5383 * mraw/MRawEvtPixelIter.h:
5384 - added Jump member function which jumps directly to the pixel with a
5385 given id
5386
5387
5388
5389 2001/04/09: Thomas Bretz
5390
5391 * mgui/MGeomPix.cc:
5392 - fixed a small error in SetNeighbors (thanks to Oscar)
5393
5394 * mgui/MGFadcDisp.[h,cc]:
5395 - Fixed many small errors which caused the display to display nonsens
5396 in some situations
5397
5398
5399
5400 2001/04/04: Thomas Bretz
5401
5402 * mraw/MRawEvtData.[cc,h]:
5403 - changed wrong return type of GetNumPixels to UShort_t
5404
5405 * mmain/MBrowser.[cc,h]:
5406 - made the dialog somehow work like it should
5407
5408
5409
5410 2001/04/03: Thomas Bretz
5411
5412 * manalysis/MCT1ReadAscii.cc:
5413 - the pedestal values read from the file are now stored in MeanRms
5414 instead of Sigma
5415
5416 * manalysis/MCerPhotCalc.cc:
5417 - The pedestal mean Rms is used as the pixel error
5418
5419 * MImgCleanStd.cc:
5420 - CleanStep1: the '<' was replaced by a '<=' to clean also pixels
5421 with value=noise=0
5422
5423 * MMcPedestalCopy.cc:
5424 - All the pedestal values are now filled in (are they calculated correctly?)
5425
5426 * mgui/MGeomCamMagic.cc:
5427 - Forgot to initialize the Nextneighbors of the Magic Camera
5428 (thanks to Oscar)
5429
5430 * mhist/MHStarMap.cc:
5431 - I changed the model of the display (colors and bin width) to
5432 get a 'better' result
5433
5434
5435
5436 2001/04/02: Thomas Bretz
5437
5438 * mraw/MRawEvtHeader.h, mraw/MRawFileWrite.cc:
5439 - added constants (kTT*) for trigger type
5440
5441 * manalysis/MImgCleanStd.[h,cc]:
5442 - added changeable cleaning levels
5443
5444 * manalysis/MHillas.cc:
5445 - added some more sanity checks to the calculation
5446
5447 * manalysis/MCT1ReadAscii.[h,cc]:
5448 - added some kind of chain feature (AddFile) to process more than one file
5449
5450 * mgui/MGeomPix.[h,c]:
5451 - added interface to pixel neighbors
5452
5453 * mgui/MGeomCamCT1.[cc,h], mgui/MGeomCamMagic.[cc,h]:
5454 - creates the neighbor geomtry now, too
5455
5456 * manalysis/MImgCleanStd.[cc,h]:
5457 - switched to new stylish neighbors from MGeomCam
5458
5459
5460
5461 2001/03/30: Thomas Bretz
5462
5463 * mdatacheck/MH*, mdatacheck/MFillH*:
5464 - moved to mhist
5465
5466 * mraw/MrawEvtPixelIter:
5467 - IsLoGain -> HasLoGain
5468
5469 * mgui/MG*:
5470 - renamed
5471 - moved to mmain
5472 - move Browser functionality to MBrowser
5473
5474 * mmain/, mhist:
5475 - new
5476
5477
5478
5479 2001/03/21: Thomas Bretz
5480
5481 * manalysis/MHillas.[h,cc]:
5482 - fixed some minor errors, added sanity check (N<2) to Calc
5483
5484 * manalysis/MFillHHillas.cc:
5485 - skip event if Hillas calculations fails
5486
5487 * macros/getCollArea.C, macros/readMagic.C,
5488 mdatacheck/MViewAdcSpectra.cc, meventdisp/MGFadcDisp.cc:
5489 - changed order in MReadTree constructor
5490
5491 * manalysis/MCT1ReadAscii.[h,cc]:
5492 - changed to use MPedestalCam
5493
5494 * manalysis/MCT1Pedestals.[h,cc]:
5495 - removed
5496
5497 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
5498 - removed MCT1Pedestals
5499
5500 * mbase/BaseLinkDef.h:
5501 - added const values from Magic.h
5502
5503 * mbase/MLogManip.h:
5504 - changed style of dbginf
5505
5506 * mbase/MParList.cc:
5507 - make use of dbginf
5508
5509 * mbase/MReadTree.[h,cc]:
5510 - switched from a TTree to a TChain object
5511 - chnaged order of variables of the constructor
5512
5513
5514
5515 2001/03/21: Thomas Bretz
5516
5517 * macros/CT1Hillas.C, manalysis/MImgCleanStd.cc, manalysis/MImgCleanStd.h,
5518 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalCopy.h,
5519 manalysis/MCerPhotCalc.h, manalysis/MCerPhotCalc.cc, mdatacheck/MHHillas.h,
5520 mdatacheck/MHHillas.cc, mdatacheck/MFillHFadc.cc, mdatacheck/MFillHFadc.h,
5521 mdatacheck/MHFadcCam.cc, mdatacheck/MHFadcCam.h, mdatacheck/MHFadcPix.cc,
5522 mdatacheck/MHFadcPix.h, mdatacheck/MFillHHillas.cc,
5523 mdatacheck/MFillHHillas.h
5524 - added
5525
5526 * mdatacheck/MHistosAdc.[h,cc]:
5527 - replaced by MHFadc[Cam,Pix]
5528
5529 * mdatacheck/MFillAdcSpect.[h,cc]:
5530 - replaced by MFillHFadc
5531
5532 * macros/readCT1.C:
5533 - uses the new classes now
5534 - calculates and displays hillas
5535
5536 * manalysis/AnalysisLinkDef.h:
5537 - added MCerPhotCalc, MImgCleanStd, MMcPedestalCopy
5538
5539 * manalysis/MCT1ReadAscii.cc:
5540 - PreProcess uses FindCreateObj now
5541
5542 * manalysis/MCerPhotEvt.cc, manalysis/MPedestalCam.cc:
5543 - changed the new back to 'new with placement'
5544
5545 * manalysis/MCerPhotEvt.[h, cc]:
5546 - removed cleaning from this class
5547
5548 * manalysis/MHillas.cc:
5549 - some small changes in the naming inside Calc()
5550
5551 * manalysis/MHillas.h:
5552 - added Get-functions
5553
5554 * manalysis/MPedestalCam.h:
5555 - added InitSize-function
5556
5557 * manalysis/MPedestalPix.h:
5558 - made Get-functions const
5559
5560 * manalysis/Makefile:
5561 - added MMcPedestalCopy, MImgCleanStd, MCerPhotCalc
5562
5563 * mbase/MLogManip.h:
5564 - "l." before line number
5565
5566 * mbase/MParList.cc:
5567 - added the autodelete feature for automatically created classes
5568
5569 * mdatacheck/DataCheckLinkDef.h:
5570 - added MHFadc[Cam,Pix], MHHillas
5571 - removed MHistosAdc
5572 - added MFillHFadc, MFillHHillas
5573
5574 * mdatacheck/MGDisplayAdc.[h,cc], MShowSpect.[h,cc],
5575 mdatacheck/MViewAdcSpectra.[h,cc], :
5576 - changed from MHistaosAdc to MHFadcCam
5577
5578 * mdatacheck/Makefile:
5579 - added MFillHFadc.cc, MFillHHillas.cc
5580 - removed MFillAdcSpect.cc
5581
5582 * manalysis/MCT1ReadAscii.h, mbase/MEvtLoop.h, mbase/MLog.h,
5583 mbase/MParList.h, mbase/MReadTree.h, mbase/MTask.h,
5584 mbase/MTaskList.h, mdatacheck/MDumpEvtHeader.h,
5585 meventdisp/MGFadcDisp.h, mgui/MCamDisplay.h,
5586 mgui/MCamNeighbor.h, mgui/MGDataCheckMain.h,
5587 mgui/MGEventDispMain.h, mgui/MGMarsMain.h,
5588 mgui/MGMonteCarloMain.h, mgui/MGPrototyp.h, mgui/MHexagon.h,
5589 mmontecarlo/MCollAreaTrigger.h, mraw/MRawEvtPixelIter.h,
5590 mraw/MRawFileRead.h, mraw/MRawFileWrite.h:
5591 - set version number to '0' (no i/o for this class)
5592
5593 * mgui/MGeomCamCT1.cc:
5594 - new claculation algorith for the CT1 camera. It is more
5595 exact in the camera plain
5596
5597 * mgui/MHexagon.cc:
5598 - removed Draw-function (it is inherited from TObject)
5599
5600 * mmc/MMcFadcHeader.hxx:
5601 - Added get-functions
5602
5603
5604
5605
5606 2001/03/20: Thomas Bretz
5607
5608 * manalysis/MPedestalPix.[h,cc], manalysis/MPedestalCam.[h,cc],
5609 manalysis/MHillas.[h,cc], manalysis/MHillasCalc.[h,cc],
5610 mgui/MGeomCamCT1.[h,cc], mgui/MGeomCamMagic.[h,cc]
5611 - added
5612
5613 * macros/readCT1.C:
5614 - added calculation of Hillas parameters
5615 - changed from pointers to objects
5616
5617 * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
5618 - added MPedestalPix/Cam, MHillas, MHillasCalc
5619
5620 * manalysis/MCerPhotEvt.[h,cc]:
5621 - removed fType
5622 - commented out Draw function - should be fixed soon
5623 - renamed *Nb* to *Num*
5624 - renamed Get[Min,Max]NumPhotons to GetNumPhontons[Min,Max]
5625
5626 * meventdisp/MGFadcDisp.[h,cc]:
5627 - changed parameter of ReadinEvent to unsigned
5628
5629 * mgui/GuiLinkDef.h, mgui/Makefile:
5630 - added MGeomCamCT1, MGeomCamMagic
5631
5632 * mgui/MCamDisplay.[h,cc]:
5633 - changed constructor argument from int to MGeomCam
5634 - renamed *Nb* to *Num*
5635
5636 * mgui/MGeomCam.[h,cc]:
5637 - removed all camara specific stuff
5638 - MGeomCam is now used as a base class for the classes
5639 MGeomCam[Magic,CT1] which are containing the camera specific stuff
5640
5641 * mgui/MGeomPix.h:
5642 - added Set function
5643
5644
5645
5646 2001/03/02: Thomas Bretz
5647
5648 * manalysis/Makefile, mdatacheck/Makefile, meventdisp/Makefile,
5649 mgui/Makefile:
5650 - new
5651
5652 * mbase/MParList.[cc,h]:
5653 - Added FindCreateObj member function
5654 - added a name to the constructor
5655
5656 * mbase/MReadTree.cc:
5657 - changed to use FindCreateObj
5658
5659 * mdatacheck/MDumpEvtHeader.cc:
5660 - removed fPixelIter from member list
5661 - changed cout to *fLog
5662
5663 * mdatacheck/MViewAdcSpectra.cc:
5664 - removed a HUGE memory leak. All the objects in the list (and the
5665 lists itself were NEVER deleted)
5666
5667 * mdatacheck/MFillAdcSpect.cc
5668 - removed fPixelIter from member list
5669 - changed cout to *fLog
5670 - changed to use FindCreateObj
5671 - changed high and low to hi and lo
5672
5673 * mdatacheck/MShowSpect.cc
5674 - changed cout to *fLog
5675 - added a name to the constructor
5676
5677 * mraw/MRawFileRead.cc:
5678 - changed to use FindCreateObj
5679
5680 * mdatacheck/MGDisplayAdc.[h,cc]:
5681 - added some new member functions to make code more clear
5682 - removed fHists from the destructor
5683
5684 * mdatacheck/MHistosAdc.h:
5685 - changed high and low to hi and lo
5686
5687 * macros/dohtml.C:
5688 - added manalysis
5689
5690
5691
5692 2001/03/01: Thomas Bretz
5693
5694 * Makefile:
5695 - added headers to dependencies
5696
5697 * Makefile.rules:
5698 - added headers to dependencies
5699
5700 * merpp.cc:
5701 - changed from pointers to objects
5702 - added compression level support
5703
5704 * readraw.cc:
5705 - removed unnecessary includes
5706
5707 * mbase/MArray*.*:
5708 - changed all Int_t to UInt_t
5709
5710 * mbase/MLogManip.h:
5711 - changed name of __DINF__ to dbginf
5712
5713 * mraw/MRawCrateData.[h,cc], mraw/MRawEvtHeader.[h,cc],
5714 mraw/MRawRunHeader.[h,cc]:
5715 - changed ifstream to istream
5716
5717 * mraw/MRawEvtData.cc:
5718 - changed the reading, which speeds up merpp by a factor of 10
5719
5720 * mraw/MRawEvtData.h:
5721 - added flag to InitArrays and DeletePixels
5722 (not yet used)
5723
5724 * mraw/MRawFileRead.h:
5725 - removed pParList from parameter list
5726
5727 * manalysis/AnalysisLinkDef.h
5728 - removed MReadCT1Ascii, added MCT1ReadAscii
5729 - added MCT1Pedestals
5730
5731 * manalysis/MCerPhotEvt.[h,cc]:
5732 - changed the constructor a little bit
5733 - rewrote Print() to make it a bit more readable
5734 - moved MCerphotPix to new File
5735 - added many lines of comments
5736 - exchanged old stylish new call with new stylish(=) one
5737 - replaced all accesses to fPixels with the [] operator to make this
5738 lines more readable
5739 - made all variable declarations const-correct,
5740 - I changed the style of the cleaning method from if(a){if()b{if(c){}}}
5741 to if(!a)continue; if(!b)continue if(!c) continue; to make it more
5742 compact, readable and easier to understand
5743 - renamed the Boolean-functions to Is* to get a stricter structure
5744 - replaced mapping function to access the pixel list entries by the new
5745 operator to get rid of more than the necessary number of member
5746 functions without loosing speed or readability
5747 - renamed GetMinimum/MaximumPhoton to GetMin/MaxNumPhotons to be
5748 more exact
5749
5750 * mgui/MCamGeom.* splitted and changed to MGeomCam/Pix:
5751 - added a new operator to access the TObjArray
5752 - removed unnecessary code from CreateCT1
5753
5754 * mbase/MAGIC.h:
5755 - added kPI
5756
5757 * mbase/MReadTree.cc:
5758 - added some comments
5759
5760 * mgui/MCamDisplay.[h,cc]:
5761 - added some comments, reordered a bit the calls in the constructor
5762 to get a 'straight forward structure', MGeomCam is now only
5763 locally used where it is needed, replaced access to the
5764 TClonesArrays by new member-function to get a more readable code,
5765 replaced old stylish new call with new stylish one, made
5766 variable decleration const-correct, introduced a new member function
5767 to set the pixel color, renamed the overloaded Draw functions to
5768 DrawPhotons, DrawPhotErr to prevent missunderstatements, changed
5769 the 'layout' of GetColor to make it easier to understand the algorithm,
5770
5771 * mgui/MCamNeighbor.[h, cc]:
5772 - changed to new log-interface
5773 - exchanged -9999 by -1
5774 - skipped the exits
5775 - you must check for -1 one in any case
5776 - this means a warning should be enough
5777
5778 * mgui/MHexagon.[h,cc]:
5779 - added new constructor whcih uses a MGeomPix-object
5780
5781
5782
5783 2001/02/28: Thomas Bretz
5784
5785 * mbase/MParList.[h,cc]:
5786 - changed return type of FindObject back to TObject
5787 - it seems so, that some compilers don't like overriding the
5788 return type of a virtual member function
5789
5790
5791
5792 2001/02/23: Thomas Bretz
5793
5794 * mraw/MRawEvtPixelIter.h:
5795 - added GetSum* functions
5796
5797 * mbase/MParList.[h,cc]:
5798 - Removed unnecessary fNext-stuff
5799
5800
5801
5802 2001/02/22: Thomas Bretz
5803
5804 * merpp.cc, readraw.cc, mbase/MParContainer.cc, mbase/MParList.cc,
5805 mbase/MParList.h, mbase/MReadTree.cc, mbase/MTask.cc, mbase/MTask.h,
5806 mbase/MTaskList.cc, mbase/MTime.cc, mdatacheck/MDumpEvtHeader.cc,
5807 mdatacheck/MShowSpect.cc, meventdisp/MGFadcDisp.cc, mgui/MGPrototyp.h,
5808 mmc/MHeaderTrig.cxx, mraw/MRawCrateArray.cc, mraw/MRawEvtData.cc,
5809 mraw/MRawEvtHeader.cc, mraw/MRawFileRead.cc, mraw/MRawFileWrite.cc,
5810 mraw/MRawRunHeader.cc:
5811 - exchanged cout with the new logging style (gLog, *fLog)
5812
5813 * mraw/MRawEvtData.cc:
5814 - added 'dec' option to Print
5815
5816 * mmc/MHeaderTrig.cxx, mmc/MMcEvt.cxx, mmc/MMcTrig.cxx:
5817 - small changes to the Print funtions
5818
5819
5820
5821 2001/02/21: Thomas Bretz
5822
5823 * MRawEvtData.cc:
5824 - Changed ReadEvt according to the new raw binary format 2001/02/20
5825
5826 * Added MLog.[h,cc], MLogManip.[h,cc]
5827
5828 * Adde SetStreamer and fLog to the MParContainer base class
5829
5830 * Derived MEvtLoop from MParContainer
5831
5832 * Makefile:
5833 - added 'tar'
5834
5835 * mbase/BaseIncl.h:
5836 - added fstream.h, TGListBox.h
5837
5838 * mbase/BaseLinkDef.h:
5839 - added pragma for gLog and MLog
5840
5841 * mbase/MAGIC.h:
5842 - added forward definition for gLog
5843
5844 * mbase/MEvtLoop.cc:
5845 - exchanged cout with *fLog
5846 - added statements to provide log-facility to all tasks als parameter
5847 containers
5848
5849 * mbase/MEvtLoop.h:
5850 - Small changes
5851
5852 * mbase/MParContainer.h:
5853 - Added definitions necessary for use of Log-Facility
5854
5855 * mbase/MParList.[h,cc]:
5856 - Added SetLogStream
5857
5858 * mbase/MTask.h:
5859 - added fLog
5860
5861 * mbase/MTaskList.[h,cc]:
5862 - added SetLogStream
5863
5864 * mbase/Makefile:
5865 - Added MLog.cc, MLogManip.cc
5866
5867
5868
5869 2001/02/19: Harald Kornmayer
5870
5871 * implemented the Image Cleaning a la CT1 to the class MCerPhotEvt
5872
5873 * changed the readCT1.C file to show the effects of the image cleaning
5874 a la CT1
5875
5876 * changed
5877 mgui/MCamNeighbor.cc
5878 mananlysis/MCerPhotEvt.cc .h
5879 macros/readCT1.C
5880
5881
5882
5883 2001/02/19: Thomas Bretz
5884
5885 * MParContainer.h added prototypes for AsciiRead/Write
5886
5887 * .rootrc added
5888
5889 * MEvtLoop.[h,cc]:
5890 - split eventloop in its three parts, this should be used for
5891 debugging only.
5892
5893
5894
5895 2001/02/06: Harald Kornmayer
5896
5897 * the first running version with a eventdisplay. Now we are able
5898 to display an Event on the photo electron level. To do this, run
5899 the macro "macros/readCT1.C" after changing the file name.
5900
5901 changed:
5902 macros/readCT1.C
5903 manalysis/MNphotEvent.cc, manalysis/MNphotEvent.h
5904 analysis/MReadCT1Ascii.cc
5905 mgui/MCamDisplay.cc, mgui/MCamDisplay.h
5906
5907
5908
5909 2001/01/23: Harald Kornmayer
5910
5911 * the integration of the class FadcDisp in the mars enviroment
5912 and further developments in the display
5913
5914 changed:
5915 meventdisp/MGFadcDisp.h
5916 meventdisp/MGFadcDisp.cc
5917 mgui/GuiIncl.h
5918 mgui/GuiLinkDef.h
5919 mgui/MGMarsMain.cc
5920 mgui/MGPrototyp.cc
5921 mgui/MGPrototyp.h
5922 mgui/Makefile
5923
5924 added:
5925 mgui/MGEventDispMain.h
5926 mgui/MGEventDispMain.cc
5927
5928
5929
5930 2001/01/22: Harald Kornmayer
5931
5932 * started with the development of a EventDisplay Utitliy.
5933 Therefore I added the following files.
5934
5935 meventdisp/EvtDispIncl.h
5936 meventdisp/EvtDispLinkDef.h
5937 meventdisp/MGFadcDisp.cc
5938 meventdisp/MGFadcDisp.h
5939 meventdisp/Makefile
5940
5941 Also a few of the older files where slightly changed.
5942 ./Makefile
5943 ./Makefile.rules
5944 mraw/MRawEvtData.
5945
5946
5947
5948 2001/01/19: Thomas Bretz
5949
5950 * mmc/*.hxx:
5951 - changed include of MDefineTrigger.h back
5952
5953
5954
5955 2001/01/19: Oscar Blanch
5956
5957 * mmc/MTriggerDefine.h:
5958 - added
5959
5960
5961
5962 2001/01/18: Thomas Bretz
5963
5964 * Makefile:
5965 - mmc-library added
5966
5967 * Makefile.conf.general:
5968 - Added definition of __MARS__
5969
5970 * Makefile.rules:
5971 - Added definitions to rootcint
5972
5973 * Oscar added the McFormat subdir of the Monte Carlo as mmc
5974
5975 * mmc/MMcEvt.h:
5976 - renamed to MMcEvt.hxx
5977
5978 * mmc/*.hxx:
5979 - added necessary defintions from MDefineTrigger.h
5980
5981 * mmc/Makefile, mmc/McLinkDef.h, mmc/McIncl.h, mmc/readme.txt:
5982 - added
5983
5984 * mmc/LinkDef.h:
5985 - removed
5986
5987
5988
5989 2001/01/17: Thomas Bretz
5990
5991 * Makefile:
5992 - Exchanged explicit rules to make library by implicit ones
5993 - The shared object works now. I exchanged the libraries with the object
5994 files. But I don't know why the libraries don't work.
5995
5996 * Makefile.conf.linux-gnu:
5997 - replaced CC with gcc (instead of g++)
5998
5999 * mdatacheck/DataCheckLinkDef.h:
6000 - removed unused statements
6001
6002 * mraw/RawLinkDef.h:
6003 - added globals
6004
6005 * mraw/MerppLinkDef.h:
6006 - removed unused file
6007
6008
6009
6010 2001/01/12: Thomas Bretz
6011
6012 * MLinkDef.h, MIncl.h, marslogo.xpm, magiclogo.xpm:
6013 - added
6014
6015 * LinkDef.h:
6016 - removed
6017
6018 * Makefile:
6019 - Added CINT, mrproper
6020
6021 * mbase/Makefile, mraw/Makefile, mgui/Makefile, mdatacheck/Makefile:
6022 - included makefile.general, Makefile.rules,
6023 - removes corresponding lines
6024
6025 * mdatacheck/MDumpEvtHeader.[h,cc], mdatacheck/MFillAdcSpect.[cc,h],
6026 mdatacheck/MFillAdcSpect.[h,cc], mdatacheck/MGDisplayAdc.[cc,h],
6027 mdatacheck/MHistsosAdc.[h,cc], mdatacheck.MShowSpect.[cc,h]
6028 - changed include statements
6029
6030 * mgui/MGDataCheckMain.[cc,h], mgui/MGMarsMain.[cc,h]
6031 - changed include statements
6032 - move enum from h to cc
6033 - removed comma operator from delete statements (nonsense)
6034
6035
6036
6037 2001/01/11: Harald Kornmayer
6038
6039 * ./
6040 readraw.cc, Makefile, Makefile.rules, LinkDef.h, MParList.cc, MReadTree.cc,
6041 MReadTree.h, mbase/Makefile, mraw/Makefile
6042 - small changes in this files. Not really critical.
6043
6044 * mars.cc
6045 - added the main file for the gui
6046
6047 * mgui/
6048 GuiIncl.h, MGMarsMain.cc, GuiLinkDef.h, MGMarsMain.h, MGDataCheckMain.cc,
6049 Makefile, MGDataCheckMain.h
6050 - added the subdir mgui and this files
6051
6052 * mdatacheck/
6053 DataCheckIncl.h, DataCheckLinkDef.h, MHistosAdc.cc, MHistosAdc.h,
6054 MDumpEvtHeader.cc, MDumpEvtHeader.h, MShowSpect.cc, MShowSpect.h,
6055 MFillAdcSpect.cc, MFillAdcSpect.h, MViewAdcSpectra.cc, MViewAdcSpectra.h,
6056 MGDisplayAdc.cc, MGDisplayAdc.h, Makefile
6057 - added the subdir mdatacheck and this files
6058
6059
6060
6061 2000/12/28: Thomas Bretz
6062
6063 * merpp.cc, MArray.cc, MArray.h, MArrayB.cc, MArrayB.h, MArrayS.cc,
6064 MArrayS.h, MEvtLoop.cc, MEvtLoop.h, MInputStreamID.cc, MInputStreamID.h,
6065 MParContainer.cc, MParContainer.h, MParList.cc, MParList.h, MReadTree.cc,
6066 MTask.cc, MTask.h, MTaskList.cc, MTaskList.h, MTime.cc, MTime.h:
6067 - Added changes some comments.
6068
6069 * MLoopEvt.cc, MLoopEvt.h:
6070 - Removed
6071
6072
6073
6074 2000/12/22 - Thomas Bretz:
6075
6076 * readraw.cc:
6077 - changed some comments and the Root-Name of the program
6078 - added check for the existance of the file
6079 - changed name of numbers of entries from iEnt to nent
6080
6081 * dohtml.C:
6082 - changed title of converted macros
6083
6084 * MRawEvtData.cc:
6085 - added a commet in Draw()
6086
6087 * MRawEvtPixelIter.[h,cc]:
6088 - Added the comment header of the file
6089 - removed inheritance from TIterator (not needed)
6090 - some changes to get it work (the one in the repository was untested
6091 and not working)
6092 - changed calling style of iterator from do...while to while-loop
6093 - changed some comments
6094
6095 * MRawRunHeader.cc:
6096 - added some comments
6097
6098 * Changelog, News: added
6099
6100 * test.C: removed
Note: See TracBrowser for help on using the repository browser.