source: trunk/MagicSoft/Mars/Changelog@ 2487

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