source: trunk/MagicSoft/Mars/Changelog@ 2486

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