source: trunk/MagicSoft/Mars/Changelog@ 2480

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