source: trunk/MagicSoft/Mars/Changelog@ 2484

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