source: trunk/MagicSoft/Mars/Changelog@ 4768

Last change on this file since 4768 was 4768, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 224.7 KB
Line 
1
2Please do not write behind the end of line tag so that it is possible
3to send a Changelog file to a line printer directly. Thanks.
4
5For your entries please follow EXACTLY this style:
6
7_yyyy/mm/dd:_[Your Name]
8_
9___*_filename:
10_____-_description
11_
12___*_filename2, filename3:
13_____-_description
14_
15_
16_
17
18While an underscore is a placeholder for a white-space or an empty line.
19
20 -*-*- END OF LINE -*-*-
21 2004/08/27: Markus Gaug
22
23 * mjobs/MJCalibration.h
24 - re-added function SetInput which had been removed recently
25 (probably by accident)
26
27 * mjobs/MJCalibration.cc
28 - return kTRUE in function FindColor() if the colour has already
29 been set (e.g. by the macro).
30
31 * mcalib/MHGausEvents.cc
32 - removed one call to fHPowerProbability->SetDirectory(0) which was
33 at a completely wrong place in CreateEventXaxis(). Probably a
34 slip of the emacs-pen.
35
36
37
38 2004/08/27: Thomas Bretz
39
40 * Makefile:
41 - added comments how to link statically
42 - added star again
43
44 * callisto.cc:
45 - fixed some output
46 - fixed batch mode
47
48 * mbadpixels/Makefile:
49 - added a comment
50
51 * mbase/BaseLinkDef.h, mbase/Makefile:
52 - added MArrayI
53
54 * mbase/MArrayI.[h,cc]:
55 - added
56
57 * mbase/MArrayD.cc:
58 - fixed some comments
59
60 * mcalib/MCalibrateData.[h,cc]:
61 - unified CalibratePedestal and CalibrateData. Calling GetConvFactor twice
62 took a lot of time.
63
64 * mjobs/MJCalibrateSignal.cc, mjobs/MJPedestal.cc, MJCalibration.cc:
65 - added two empty lines to output if finished
66 - added a sanity check around the call to CheckEnv
67
68 * mpedestal/MPedPhotCam.cc:
69 - use faster MArrays in ReCalc
70 - accelerated GetPixelContent
71
72 * msignal/MExtractTimeFastSpline.cc:
73 - accelerated a bit by defining
74 Float_t higainklo = fHiGainSecondDeriv[klo];
75 Float_t higainkhi = fHiGainSecondDeriv[khi];
76 instead of accesing the arrays many times inside the loops.
77 Somebody should do the same for logain.
78
79 * mraw/MRawEvtData.cc:
80 - fixed a bug in InitArrays
81
82 * showlog.cc:
83 - added some more functionality
84
85 * star.cc:
86 - changed to use new MJStar
87
88 * mfileio/MChain.cc:
89 - added namespace
90
91 * mfileio/MReadTree.cc:
92 - added a call to ResetTree as first call in PreProcess. Using
93 MReadReports with a tree missing in the file mysteriously
94 crashed because TChain::fTreeNumber was set already by
95 a root-miracle.
96
97 * mjobs/JobsLinkDef.h, mjobs/Makefile:
98 - added MJStar
99
100 * mjobs/MJCalibrateSignal.cc:
101 - replaced MReadMarsFile by MReadReports
102
103 * mmain/MEventDisplay.cc:
104 - fixed reading of resource file
105
106 * mbase/MStatusDisplay.cc:
107 - made Reset() batch-mode safe
108
109 * mcalib/MCalibrateData.cc:
110 - simplified a calculation
111
112 * mfileio/MReadReports.[h,cc]:
113 - implemented GetEntries()
114 - implemented GetFileName()
115 - changed kHasMaster from BIT(15) to BIT(14)
116 - fixed a bug in AddTree which caused the Master-Bit to be
117 set for the wrong object
118
119 * mfileio/MReadTree.cc:
120 - return 0 entries if entrie==TChain::kBigNumber
121
122 * msignal/MExtractFixedWindow.cc:
123 - updated output to fitz into a std 80-col console
124
125 * mars.rc, star.rc:
126 - added
127
128
129
130 2004/08/26: Wolfgang Wittek
131
132 * mstarcam/MStarCamTrans.[h,cc]
133 - include optical aberration when plotting the grid
134
135 * mtemp/MTelAxisFromStars.[h,cc]
136 - add member functions SetPointingPosition and SetSourcePosition
137
138
139
140 2004/08/26: Markus Gaug
141
142 * mjobs/MJExtractCalibTest.[h,cc]
143 - derived from MJob
144 - removed obsolete code (which has been moved to MJob)
145
146 * macros/calibration.C
147 - adapt code to changes done in MJob
148
149
150
151 2004/08/26: Thomas Bretz
152
153 * mbase/MMath.cc:
154 - changed calculation of sign of SignificanceLiMaSigned due to
155 bug #131
156
157 * readdaq.cc, readraw.cc:
158 - updated to support MRawEvtData2
159
160 * mraw/MRawEvtData.[h,cc], mraw/MRawFileRead.cc,
161 mraw/MRawFileWrite.[h,cc], mraw/MRawRead.[h,cc],
162 mraw/MRawSocketRead.cc:
163 - updated to support negative pixel ids
164
165 * mraw/MRawRunHeader.[h,cc]:
166 - increased max format version to 4
167 - added GetNumNormalPixels
168 - added GetNumSpecialPixels
169 - added GetMinPixId
170 - added GetMaxPixId
171
172 * merpp.cc:
173 - added a new option --auto-time to get the time range for
174 cc and/or caco data from the run header of the raw data
175
176 * callisto.cc:
177 - some additional checks
178 - more comments
179
180 * mfileio/MReadReports.h:
181 - overwrote GetFileName - otherwise CINT refuses to create an object
182
183 * mbadpixels/MBadPixelsTreat.[h,cc]:
184 - added an primitive interpolation of arrival times which
185 tries to keep the random arrival time for pixels without
186 signal
187 - fixed a bug which could cause a crash
188 - added more control over the pedestal treatment
189
190
191
192 2004/08/25: Thomas Bretz
193
194 * callisto.cc:
195 - updated handling of command line parameters
196 - added MJPedestal in second loop
197 - changed MJ* to support new MJob base class
198
199 * mjobs/JobsLinkDef.h, mjobs/Makefile:
200 - added MJob
201
202 * mjobs/MJob.[h,cc]:
203 - added
204
205 * mjobs/MJCalibrateSignal.[h,cc], mjobs/MJCalibrateSignal.[h,cc],
206 mjobs/MJCalibration.[h,cc], mjobs/MJPedestal.[h,cc]:
207 - derived from MJob
208 - removed obsolete code (which has been moved to MJob)
209
210 * mjobs/MSequence.[h,cc]:
211 - use MDirIter::GetEntries in SetupRuns
212 - implemented raw-file mode
213 - added GetNum*Runs
214
215 * callisto.rc:
216 - fixed
217
218 * showlog.cc, mbase/MTime.cc, mreport/MReportFileReadCC.cc:
219 - some fixes for gcc 2.95.3
220
221 * mbase/MEvtLoop.cc:
222 - allow prefix argument in ReadEnv
223
224 * mbase/MLog.cc:
225 - added options for log-file and html-file
226
227 * mbase/MTaskEnv.[h,cc]:
228 - added comment
229 - implemented dummy/skip-mode
230
231 * mjobs/MJCalibrateSignal.cc:
232 - removed non existance check from reading extractors (MTaskEnv dummy mode!)
233 - small changed to output
234
235 * mjobs/MJCalibration.cc:
236 - added a cast for gcc 2.95.3
237 - allow dummy mode MTaskEnvs
238
239 * mjobs/MJPedestal.[h,cc]:
240 - implemented CheckEnv
241
242 * msignal/MExtractTime.cc:
243 - fixed Print()-output
244
245 * msignal/MExtractTimeFastSpline.[h,cc]:
246 - added ReadEnv
247 - added Print
248
249
250
251 2004/08/25: Wolfgang Wittek
252
253 * mpointing/MPointingPos.h
254 - add member function GetHa()
255
256
257
258 2004/08/24: Thomas Bretz
259
260 * Makefile:
261 - added callisto
262 - added showplot
263 - removed star
264 - removed status
265
266 * merpp.cc:
267 - updated Usage()
268 - use some new feature or MArgs
269
270 * callisto.cc:
271 - a new program to calculate the calibration
272
273 * callisto.rc:
274 - resource file for callisto
275
276 * showplot.cc:
277 - a new program to show data check plots from a file
278
279 * mbase/MArgs.[h,cc]:
280 - added Get*AndRemove with a default argument
281
282 * mbase/MDirIter.[h,cc]:
283 - added Add(MDirIter &)
284
285 * mbase/MEvtLoop.cc:
286 - check for the existance of the resource file
287
288 * mbase/MLog.[h,cc]:
289 - added Usage()
290
291 * mbase/MTaskEnv.cc:
292 - added output in ReInit
293
294 * mjobs/MJCalibration.cc, mjobs/MJPedestal.cc:
295 - added Overwrite option
296 - maintained CheckEnv
297 - added InputPath
298
299 * mjobs/MSequence.cc:
300 - added return value to Setup*
301 - added comments
302
303 * mmain/MEventDisplay.cc:
304 - added tab for cleaning data
305
306 * msignal/MExtractFixedWindowPeakSearch.[h,cc]:
307 - added ReadEnv
308 - for consistency renamed fWindowSize* to f*WindowSize
309
310 * msignal/MExtractTimeHighestIntegral.[h,cc]:
311 - added ReadEnv
312
313 * mcalib/MCalibrationRelTimeCalc.cc:
314 - do not write to a log file if logging is not enabled
315 - replaced some arrays by TArrays
316
317 * mjobs/JobsLinkDef.h, mjobs/Makefile:
318 - added MJCalibrateSignal
319
320 * mjobs/MJCalibrateSignal.[h,cc]:
321 - added
322
323 * msignal/MExtractFixedWindow.[h,cc], msignal/MExtractFixedWindowPeakSearch.[h,cc],
324 msignal/MExtractSlidingWindow.[h,cc], msignal/MExtractTime.[h,cc],
325 msignal/MExtractTimeAndCharge.[h,cc], msignal/MExtractTimeHighestIntegral.[h,cc]
326 msignal/MExtractor.[h,cc]:
327 - added Print
328 - added ReadEnv
329 - changed version number to 1
330
331
332
333 2004/08/23: Wolfgang Wittek
334
335 * mtemp/MTelAxisFromStars.[h,cc]
336 - replace MStarLocalCam by MStarCam
337 - replace MStarLocalPos by MStarPos
338
339 * mtemp/MHTelAxisFromStars.[h,cc]
340 - replace MStarLocalCam by MStarCam
341 - replace MStarLocalPos by MStarPos
342
343 * mstarcam/MStarPos.[h,cc]
344 - remove data members containing 'CG' ('correlated Gauss');
345 put results from uncorrelated and correlated Gauss fit
346 into the same area
347
348 * mtemp/MFindStars.h[cc]
349 - changes due to the changes in MStarPos
350 - remove fit with fixed correlation
351
352 * mtemp/MSourceDirections.[h,cc]
353 - changes due to the changes in MStarPos
354
355 * mtemp/findTelAxisFromStars.C
356 - changes due to changes in MTelAxisFromStars and MFindStars
357
358
359
360 2004/08/23: Thomas Bretz
361
362 * mbadpixels/MBadPixelsTreat.[h,cc]:
363 - changed missleading ProcessRMS to ProcessPedestal
364
365 * mfileio/MReadTree.h:
366 - added AddFiles(MDirIter&) which is overloaded by another function
367 which resulted in some trouble
368
369 * mfileio/MWriteRootFile.[h,cc]:
370 - added cd() member function
371
372 * mimage/MHHillas.[h,cc]:
373 - added display of camera on top of MeanXY-plot
374
375 * mraw/MRawSocketRead.h:
376 - added GetFileName()
377
378 * manalysis/MCerPhotEvt.[h,cc]:
379 - added new data member fNumIslands
380 - added new functions (CalcIsland/CalcIslands to calculate islands)
381 - added new member function to sort pixels by index
382 - added island index in GetPixelContent
383 - increased version number
384
385 * manalysis/MCerPhotPix.[h,cc]:
386 - added fIdxIsland data member
387 - overloaded Compare function to be able to sort by pixel index
388 - increased version number
389
390 * mhist/MHEvent.[h,cc]:
391 - added new option for island index
392 - added kEvtCleaningData
393
394 * mimage/MImgCleanStd.[h,cc]:
395 - added island calculation after image cleaning
396 - fixed some output to be consistent
397 - added ReadEnv
398 - updated StreamPrimitive
399 - added new cleaning method (probability cleaning)
400
401 * mimage/Makefile:
402 - added mhist
403
404 * mmain/MEventDisplay.cc:
405 - added display of island index
406 - changed to support files with calibrated data, too
407
408 * mhvstime/MHVsTime.[h,cc]:
409 - implemented the possibility to set a maximum number of points
410
411 * mbase/MParContainer.h:
412 - changed StreamPrimitive to public
413
414 * mcalib/MMcCalibrationCalc.[h,cc]:
415 - added fPar data member (MImagePar) to get number of
416 saturating hi gain pixels
417
418 * mimage/Makefile, mimage/ImageLinkDef.h:
419 - added MImagePar
420 - added MHImagePar
421
422 * mimage/MConcentration.[h,cc]:
423 - removed obsolete destructor
424
425 * mimage/MHillas.[h,cc]:
426 - added a check for island index to calculation
427
428 * mimage/MHillasCalc.cc:
429 - added option kCalcImagePar
430 - added option kCalcHillasSrc
431 - added Print function
432 - added StreamPrimitive function
433 - added resource support (ReadEnv)
434
435 * mimage/MHillasExt.[h,cc]:
436 - added a check for island index to calculation
437 - replaced for-loop by iterator
438
439 * mimage/MHillasSrc.[h,cc]:
440 - changed argument to Calc from pointer to reference
441
442 * mimage/MHillasSrcCalc.[h,cc]:
443 - fixed StreamPrimitive
444 - added some const-qualifiers to data members
445 - adapted to change in MHillasSrc
446
447 * mimage/MNewImagePar.[h,cc]:
448 - moved saturating pixels to new class MImagePar
449 - added a check for island index to calculation
450 - increased version number
451
452 * mpointing/MSrcPosCam.h:
453 - made StreamPrimitive public
454
455 * msignal/MArrivalTime.h:
456 - removed operator()
457 - added operator[] const
458
459 * manalysis/MCameraData.[h,cc]:
460 - added algorithm for 'Probability cleaning'
461
462 * mbase/MMath.[h,cc]:
463 - added GaussProb
464
465 * mjobs/MSequence.h:
466 - added IsValid
467
468
469
470 2004/08/20: Thomas Bretz
471
472 * mjobs/MSequence.[h,cc]:
473 - added path-option to SetupRuns
474
475 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, MJPedestal.cc:
476 - changed file "UPDATE" to "RECREATE"
477
478 * macros/sql/filldotrbk.C:
479 - removed obsolete output
480
481 * macros/sql/filldotrun.C:
482 - removed obsolete output
483 - updated to support ExcludedFDA-table
484
485 * mbase/MParList.[h,cc]:
486 - added FindTask-member function
487
488 * mcalib/MHCalibrationChargeBlindCam.cc:
489 - fixed a 'comparison between signed and unsigned'
490
491 * mfileio/MRead.h:
492 - added GetFileName()
493 - removed const-qualifier from CheckAndWrite
494
495 * mfileio/MReadMarsFile.cc:
496 - changed some logiing output
497
498 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc]:
499 - removed const-qualifier from CheckAndWrite
500
501 * mfileio/MWriteRootFile.[h,cc]:
502 - simplified the constructor by adding Init() function
503 - added ReInit function to support file splitting
504 - added file splitting support (GetNewFileName, ChangeFile)
505 - added new constructor for file splitting
506 - made gsDef* a static member
507 - slight changed to PreProcess to support file-splitting
508 - if file-spliiting is enabled return always kTRUE in IsFileOpen
509 - added many new outputs in case of possible problems
510
511 * mraw/MRawFileRead.[h,cc]:
512 - changed return type of GetFileName()
513
514 * mraw/MRawFileWrite.[h,cc]:
515 - removed obsolete pParList data member
516 - by default write all events to the 'Events' tree
517
518 * msql/MSQLServer.[h,cc]:
519 - enhanced Query function
520
521
522
523 2004/08/19: Marcos Lopez
524
525 * mjobs/MJCalibration.cc:
526 - In the function FindColor(), when looking for the calibration color in
527 the calibration file name, ignore the case, to deal with colors
528 written in capital letters.
529
530
531
532 2004/08/19: Thomas Bretz
533
534 * mastro/MTransCelLocCam.[h,cc]:
535 - renamed to MStarCamTrans and moved to mstarcam
536
537 * mastro/Makefile, mastro/AstroLinkDef.h:
538 - removed MTransCelLocCam
539
540 * mstarcam/Makefile, mstarcam/AstroLinkDef.h:
541 - cleaned up includes in Makefile
542 - added MStarCamTrans
543
544
545
546 2004/08/19: Robert Wagner
547
548 * mtemp/MFindStars.[cc,h], mastro/MAstroCamera.cc,
549 mtemp/MSourceDirections.[cc,h]
550 - Changes to reflect the change of name of MStarPos, MStarCam
551
552
553
554 2004/08/18: Thomas Bretz
555
556 * mbadpixels/MBadPixelsCam.[h,cc]:
557 - implemented function to calculate max cluster sizes
558
559 * macros/sql/filldotrbk.C, macros/sql/filldotrun.C:
560 - added return value
561
562 * mjobs/MJCalibration.cc:
563 - simplified FindColor by 1000% for later move to a new location
564
565 * mpedestal/MPedCalcFromLoGain.cc:
566 - output the range only if it has changed
567
568
569
570 2004/08/18: Wolfgang Wittek
571
572 * mastro/MTransCelLocCam.[h,cc]
573 - new class; allows to calculate for any point (X, Y) in the
574 camera the local (celestial) coordinates if the local
575 (celestial) coordinates are known for some fixed point (X0, Y0)
576 in the camera
577 - for given local (celestial) coordinates of the camera center,
578 the meber function PlotGrid draws the lines of constant theta
579 and phi (and of constant dec and hourangle) onto the camera
580 plane
581
582 * mastro/Makefile, mastro/AstroLinkDef.h
583 - MTransCelLocCam added
584
585 * macros/testMTrans.C
586 - macro to test the class MTransCelLocCam
587
588
589
590 2004/08/17: Markus Gaug
591
592 * msignal/MExtractBlindPixel.[h,cc]
593 - remove fModified which is taken care of in MJCalibration by the
594 correct initialization
595
596 * mcalib/MCalibrationChargeBlindCam.[h,cc]
597 - now a base class for different types of blind pixels cams.
598 - moved fBlindPixels away from pointer, analogue to MGeomCam
599
600 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
601 - updated to new call to GetNumBlindPixels()
602
603 * mcalib/Makefile
604 * mcalib/CalibLinkDef.h
605 * mcalib/MCalibrationChargeBlindCamOneOldStyle.[h,cc]
606 * mcalib/MCalibrationChargeBlindCamTwoNewStye.[h,cc]
607 - new classes deriving from and intializing
608 MCalibrationChargeBlindCam
609
610 * mcalib/MCalibrationChargeBlindPix.[h,cc]
611 - derive from MCalibrationPix instead of MCalibrationChargePix
612 - create possibility to intialize QE's, etc. from outside
613 - fix default to previous behaviour such that old code can still
614 run on old files without changes
615 - create copy function
616
617 * macros/calibration.C
618 - updated macro to use of MCalibrationTestCam
619
620 * mcalib/MCalibrationCam.[h,cc]
621 - comment the static variable gkNumPulserColors
622 - take the pulser color enum and gkNumPulserColors out of the streamer
623 - set the version nr from 3 to 4
624 - Simplify a piece of the code dealing with the ForEach macro
625
626 * mcalib/MCalibrationChargeCam.[h,cc]
627 - removed Init() function which is already fulfilled by the Init()
628 function of MCalibrationCam
629
630 * mcalib/MCalibrationChargeCalc.cc
631 - some changes to the output
632 - call to MCalibrationChargeBlindCam->IsValid() removed
633
634 * mbadpixels/MBadPixelsCam.cc
635 - included kDeviatingNumPhots in GetPixelContent()
636
637 * mjobs/MJCalibration.[h,cc]
638 - some small modifications in the data-check display, discussed
639 with Florian
640 - found that the MFillH for the MHCalibrationChargeBlindCam had
641 been replaced to MHCalibrationChargeBlindPix -> redone
642 - adapted InitBlindPixel() to new classes initializing the right
643 MCalibrationChargeBlindCam's
644
645 * mcalib/MCalibrationTestPix.[h,cc]
646 * mcalib/MCalibrationTestCam.[h,cc]
647 * mcalib/Makefile
648 * mcalib/CalibLinkDef.h
649 - new container class to store results of MCalibrationTestCalc
650 and MHCalibrationTestCam
651
652 * mcalib/MCalibrationTestCalc.[h,cc]
653 - adapted to use of MCalibrationTestCam
654
655 * mcalib/MHCalibrationTestCam.[h,cc]
656 - adapted to use of MCalibrationTestCam
657
658
659
660 2004/08/17: Thomas Bretz
661
662 * mcalib/MCalibrateData.[h,cc]:
663 - unrolled some if-else statements to accelerate the algorithm a
664 bit (it is just the bottelneck of calibrating the signal)
665 - made sure that code which in not needed is not executed in
666 this case
667
668 * mbadpixels/MBadPixelsCam.cc:
669 - unrolled if-else statements in GetPixelContent
670
671 * mcalib/MHCalibrationChargeBlindPix.cc:
672 - commented out unsused variable
673
674 * mjobs/MJCalibration.cc:
675 - some more output when writing the file
676
677 * mjobs/MJPedestal.[h,cc]:
678 - added more resources
679 - added fMaxEvents
680
681 * mraw/MRawEvtPixelIter.[h,cc]:
682 - fixed behaviour or fABFlags in case the array is empty
683 - changed Char_t data member to Byte_t according to change
684 in MRawEvtData
685
686 * mraw/MRawEvtData.[h,cc]:
687 - changed TArrayC data member to MArrayB to get rid of a memory
688 leak which resulted in huge memory usage when reading
689 MRawEvtData
690 - changed version number from 4 to 5
691 - changed size of fABFlag array to a more reasonable size
692 (maxid/8+1)
693
694 * mraw/MRawEvtHeader.[h,cc]:
695 - implemeted Getter for calibration pattern
696
697 * mhbase/MHMatrix.[h,cc], mranforest/MRanTree.cc,
698 mtools/MHSimmulatedAnnealing.h, mtools/MSimmulatedAnnealing.h:
699 - changed to compile with root-4.00/08
700
701 * mpedestal/MPedCalcFromLoGain.[h,cc]:
702 - changed SetDumpEvents to SetNumEventsDump to fit roots naming
703 convention
704 - fixed crashes in case nothing has beendone
705 - do not process abflag if it is not existing
706 - for the moment do no call to ReCalc in Process
707 - added some const-qualifiers
708
709 * mhist/MHCamera.h:
710 - changed the definition of FetMinimum/GetMaximum such that
711 it compiles with root 4.00/08
712
713
714
715 2004/08/17: Robert Wagner
716
717 * mstarcam, mstarcam/Makefile, mstarcam/StarcamLinkDef.h,
718 mstarcam/StarcamIncl.h, macros/dohtml.C, macros/rootlogon.C
719 - Added directory mstarcam for holding all classes related to
720 studies of stars
721
722 * mstarcam/MStarPos.[cc,h], mstarcam/MStarCam.[cc,h],
723 mstarcam/StarcamLinkDef.h, mstarcam/Makefile, Makefile
724 - moved mtemp/MStarLocalPos.[cc,h], mtemp/MStarLocalCam.[cc,h]
725
726 * mastro/MAstroCamera.cc, mtemp/MFindStars.[cc,h],
727 mtemp/MSourceDirections.[cc,h]
728 - changed references to MStarLocalPos to MStarPos
729
730
731
732 2004/08/16: Thomas Bretz
733
734 * mcalib/MCalibrateData.[h,cc]:
735 - change to support also 'No calibration of data'
736 - removed obsolete dependancie on *'FromData' containers
737
738 * mcalib/MCalibrateData.[h,cc], mbadpixels/MBadPixelsCalc.[h,cc]:
739 - added member function ReadEnv
740
741 * mbase/MTime.[h,cc]:
742 - added new member function SetStringFmt
743
744 * mcalib/MHCalibrationChargeBlindPix.cc:
745 - removed unused variable
746
747 * mcalib/MHCalibrationChargeBlindPix.cc:
748 - removed unused variable
749
750
751
752 2004/08/16: Markus Gaug
753
754 * mcalib/MHCalibrationCam.cc
755 - add a criterion to stop the Finalize() if both fHiGainArray
756 and fLoGainArray have not been expanded.
757 - replace two gLog by *fLog
758 - add the pulser color (needed for the datacheck histograms)
759 - some modifications in the data-check display, discussed with Florian
760
761 * mjobs/MJCalibration.[h,cc]
762 - some small modifications in the data-check display, discussed
763 with Florian
764
765 * mcalib/MHGausEvents.[h,cc]
766 - make fSaturated Int_t and set to 0 in the Clean() function
767
768 * mcalib/MHCalibrationChargePix.[h,cc]
769 - remove the Clean() function
770
771 * mbadpixels/MBadPixelsPix.h
772 * mbadpixels/MBadPixelsCam.cc
773 - new functions GetUnsuitableCalibration() and
774 GetUnreliableCalibration() to denote the reason for unsuitability
775 and unreliability.
776 - in GetPixelContent flags 6 and 7.
777 - will be used for the datacheck display
778
779
780
781 2004/08/14: Markus Gaug
782
783 * msignal/MExtractor.cc:
784 - documented data members
785 - included default for SetNamePedContainer()
786
787 * mjobs/MJPedestal.[h,cc]
788 - some small modifications in the data-check display, discussed
789 with Florian
790
791
792
793 2004/08/13: Thomas Bretz
794
795 * macros/readraw.C:
796 - updated to get it working with MC data
797
798 * mbase/MTaskEnv.cc:
799 - fixed a typo
800
801 * mcalib/MCalibrationChargeCalc.[h,cc],
802 mcalib/MHCalibrationCam.[h,cc]:
803 - added ReadEnv
804 - changed some output slightly to match into a typical
805 80-column console
806
807 * mjobs/MJCalibration.[h,cc]:
808 - changed to support Sequences
809 - added SetEnv
810 - added possibility to change extractors from a resource file
811 - put MBadPixelsMerge into the tasklist - for strange reasons
812 it was missing
813
814 * mjobs/MJPedestal.[h,cc]:
815 - fixed the output name for sequences
816 - added possibility to set output from resource file
817
818 * mpedestal/MPedCalcFromLoGain.[h,cc]:
819 - changed handling of sanity check for setup
820 - removed obsolete variables
821 - changed output slightly to fit into a typical 80-column
822 console
823 - added some sanity checks to PostProcess
824 - added some info-output to PostProcess
825 - calculate a mean number of total events
826 - call ReCalc to calc mean values of sectors and areas
827
828 * mpedestal/MPedCalcPedRun.[h,cc]:
829 - changed to use ReCalc instead of doing the calculation itself
830 for convinience I left the old code as a comment inside -
831 will be removed later
832
833 * mpedestal/MPedPhotCam.[h,cc]:
834 - slight changes in ReCalc
835
836 * mpedestal/MPedestalCam.[h,cc]:
837 - added ReCalc function (maily taken from PedPhotCamReCalc)
838
839 * mpedestal/MPedestalPix.h:
840 - added Getter for fNumEvents
841
842 * mraw/MRawEvtHeader.[h,cc]:
843 - started adding support for calibration pattern. Please don't
844 take the current implementation to serious
845
846
847
848 2004/08/12: Hendrik Bartko
849
850 * msignal/MExtractor.cc:
851 - corrected the setting of AddSerialNumber for Find(Create)Object
852
853 * msignal/MExtractTime.cc:
854 - corrected the setting of AddSerialNumber for FindObject
855
856 * mbadpixels/MBadPixelsCalc.cc
857 - corrected the setting of AddSerialNumber for FindObject
858
859 * mbadpixels/MBadPixelsTreat.cc
860 - corrected the setting of AddSerialNumber for FindObject
861
862 * mimage/MImgCleanStd.cc
863 - corrected the setting of AddSerialNumber for FindObject
864
865
866
867 2004/08/12: Markus Gaug
868
869 * msignal/MExtractBlindPixel.[h,cc]
870 - Set the method from outside
871 - unified the defaults to new blind pixels
872
873 * mjobs/MJCalibration.[h,cc]
874 - implementation of MHCalibrationChargeCam
875
876 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
877 - adapt Draw() and DrawLegend() for the datacheck display
878
879 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
880 - new member function fFitFunc, can be set from outside and is
881 further passed onto the MHCalibrationChargeBlindPix's
882
883 * mcalib/MHCalibrationChargeCalc.[h,cc]
884 - improved readability of output
885 - set default fPheErrLimit to 4.5 sigma
886
887 * mcalib/MCalibrateData.[h,cc]
888 - give defaults to the Setter functions
889 - change default calibration mode from blindpixel to ffactor
890 - change exclusion of bad pixels from unsuitable run to unsuitable.
891 - some cosmetic changes
892 - remove fNumHiGainFADCSamples and fNumLoGainFADCSamples as
893 data members
894 - remove fConversionHiLo which is not used in the class
895 - write a StreamPrimitive()
896
897
898 2004/08/12: Thomas Bretz
899
900 * mreport/MReportFileReadCC.cc:
901 - fixed a bug in CheckFileHeader which caused a condition to
902 be wrongly evaluated
903
904 * mbase/MStatusDisplay.cc:
905 - small modification to postscript output
906
907 * showlog.cc:
908 - added
909
910 * Makefile:
911 - added showlog
912
913 * macros/sql/filldotrbk.C, macros/sql/filldotrun.C:
914 - update of comments
915
916 * mbase/MEvtLoop.cc:
917 - first interprete environment for fLog
918
919 * mbase/MEvtLoop.[h,cc], mbase/MParContainer.[h,cc],
920 mbase/MParList.[h,cc], mbase/MTaskList.[h,cc],
921 mfileio/MRead.[h,cc], mhbase/MHMatrix.[h,cc],
922 mpedestal/MPedCalcFromLoGain.[h,cc],
923 mpedestal/MPedCalcFromPedRun.[h,cc],
924 msignal/MExtractor.[h,cc]:
925 - changed type of ReadEnv from Bool_t to Int_t
926
927 * mbase/MLog.cc:
928 - fixed ReadEnv
929
930 * mbase/MParContainer.[h,cc]:
931 - added TestEnv
932
933 * mbase/MParList.cc, mbase/MTaskList.cc:
934 - moved some code to MParContainer::TestEnv
935
936 * mbase/Makefile, mbase/BaseLinkDef.h:
937 - added MTaskEnv
938
939 * mhist/MHCamera.cc:
940 - removed some output (Draw function don't write something
941 to the console) - it is displayed anyhow
942 - added some SetBorderMode(0)
943
944 * mjobs/JobsLinkDef.h, mjobs/Makefile:
945 - added MSequence
946
947 * mjobs/MJPedestal.[h,cc]:
948 - changed to allow a sequence as input
949 - changed to allow setting up the extractor from a TEnv
950
951 * mpedestal/MPedCalcFromLoGain.[h,cc]:
952 - moved a common block of code to a new Calc function
953 - fixed ReadEnv
954
955 * mpedestal/MPedCalcPedRun.cc, msignal/MExtractor.cc:
956 - fixed ReadEnv
957
958 * mraw/MRawCrateData.cc:
959 - updated Print()
960
961 * mraw/MRawFileRead.h:
962 - added default to first constructor argument
963
964
965
966
967 2004/08/12: Hendrik Bartko
968
969 * msignal/MExtractor.[h,cc]:
970 - add SetNamePedContainer to set the name of the pedestal
971 container
972
973 * msignal/MExtractTime.[h,cc]:
974 - add SetNamePedContainer to set the name of the pedestal
975 container
976
977 * mbadpixels/MBadPixelsCalc.[h,cc]
978 - add SetNamePedPhotContainer to set the name of the pedphot
979 container
980
981 * mbadpixels/MBadPixelsTreat.[h,cc]
982 - add SetNamePedPhotContainer to set the name of the pedphot
983 container
984
985 * mimage/MImgCleanStd.[h,cc]
986 - add SetNamePedPhotContainer to set the name of the pedphot
987 container
988
989
990
991 2004/08/12 : Wolfgang Wittek
992
993 * manalysis/MSourcPosFromStarPos.[h,cc]
994 - replace MMcEvt by MPointingPos
995
996 * manalysis/MSigmabarCalc.[h,cc]
997 - replace MMcEvt by MPointingPos
998
999 * manalysis/MSigmabar.[h,cc]
1000 - in member function Calc() return fSigmabarInner,
1001 not fSigmabar
1002 - update comments
1003 - sigmabar is the sqrt of the average (pedRMS^2/area)
1004
1005 * manalysis/MPad.[h,cc]
1006 - replace MMcEvt by MPointingPos
1007 - remove bugs
1008
1009 * mfilter/MFSelBasic.[h,cc]
1010 - replace MMcEvt by MPointingPos
1011
1012 * mfilter/Makefile
1013 - add -I../mpointing
1014
1015 * mhist/MHSigmaTheta.[h,cc]
1016 - replace MMcEvt by MPointingPos
1017 - replace 'MCerPhotPix cerpix' by 'MCerPhotPix &cerpix'
1018 - add plot "Sigmabar(Outer) versus Theta"
1019
1020 * macros/ONOFFAnalysis.C
1021 - Job A : got the padding working, work in progress
1022
1023
1024
1025 2004/08/11: Hendrik Bartko
1026
1027 * mcalib/MCalibrateData.[h,cc]:
1028 - add SetPedestalType to choose whether to calibrate the pedestal
1029 for each run or each event
1030 - add EnablePedestalType to enable to calibrate the pedestal for
1031 each run or each event
1032 - add DisablePedestalType to disable to calibrate the pedestal for
1033 each run or each event
1034 - add TestFlag test whether to do the run and / or event pedestal
1035 calculation
1036 - add SetNamePedADCRunContainer to change name of pedestal input
1037 container for run pedestals
1038 - add SetNamePedADCEventContainer to change name of pedestal input
1039 container for event pedestals
1040 - add SetNamePedPhotRunContainer to change name of pedestal output
1041 container for run pedestals
1042 - add SetNamePedPhotEventContainer to change name of pedestal output
1043 container for run pedestals
1044 - add CalibratePedestal, function to calibrate the chosen pedestal
1045 - added the calibration types kFlatCharge, kDummy as in MCalibrate
1046
1047 * mbadpixels/MBadPixelsCalc.cc:
1048 - in MBadPixelsCalc::Process() called the MPedPhotCam::ReCalc to
1049 calculate the mean values of the pedestal and RMS for the areas
1050 and sectors of the camera.
1051
1052
1053
1054 2004/08/10: Thomas Bretz
1055
1056 * mreport/MReportFileReadCC.[h,cc]:
1057 - added
1058
1059 * mreport/Makefile, mreport/ReportsLinkDef.h:
1060 - added MReportFileReadCC
1061
1062 * mreport/MReport*.[h,cc]:
1063 - prpagate file version number to all Interpreters
1064
1065 * merpp.cc:
1066 - added new commandline options to support different CC files
1067 - changed help-output
1068 - temporarily removed SQL option
1069
1070 * readraw.cc:
1071 - a small fix (a '.' was missing)
1072
1073 * mraw/MRawEvtData.cc:
1074 - fixed bug in Print
1075
1076 * manalysis/MGeomApply.cc:
1077 - changed to Init all MCamEvents in the parlist
1078
1079 * mbase/MParList.[h,cc]:
1080 - added a cast operator to TIterator*
1081 - check whether a automatic created class inherits from MParConatiner
1082
1083 * mgui/MCamEvent.[h,cc]:
1084 - added Init
1085 - added InitSize
1086
1087 * mmc/MMcTrig.cxx:
1088 - added a new option to Print()
1089
1090 * mraw/MRawEvtData.[h,cc], mraw/MRawEvtHeader.[h,cc],
1091 mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc
1092 - changed Init() to InitRead()
1093
1094 * msignal/MArrivalTime.[h,cc]:
1095 - changed argument of InitSize according to MCamEvent
1096
1097 * msql/MSQLServer.[h,cc]:
1098 - small changes to interface
1099
1100 * mimage/MHillasCalc.[h,cc]:
1101 - changed names of TString data members
1102
1103
1104
1105 2004/08/10: Robert Wagner
1106
1107 * mreport/MReportCamera.[h,cc]
1108 - added function InterpreteHOT which interprete the HOT* part of
1109 the report. The variable HVs_modified_by_HOT_Pixels is
1110 extracted, but not yet written in the corresponding MARS
1111 parameter container
1112
1113
1114
1115 2004/08/10: Markus Gaug
1116
1117 * mcalib/MCalibrationTestCalc.[h,cc]
1118 - added calculation and output of maximum not-interpolatable
1119 cluster.
1120
1121 * macros/bootcampstandardanalysis.C
1122 - added MBadPixelsTreat
1123
1124
1125 * mcalib/MCalibrate.cc
1126 - implemented different way to calculate error of signal
1127 in method kFlatCharge (as discussed with Keiichi).
1128
1129
1130
1131 2004/08/10: Florian Goebel
1132
1133 * mpedestal/MPedCalcFromLoGain.[h,cc]
1134 - add SetPedContainerName() to change name
1135 of output container
1136 - fix bug affecting behaviour when running twice
1137 over the same run
1138 - change format of "Format"
1139 - change default value for fgMaxHiGainVar to 40
1140
1141
1142
1143 2004/08/10: Nadia Tonello
1144
1145 * mbadpixels/MBadPixelsTreat.[h,cc]
1146 - replaced flag SetSloppyTreatment() with SetHardTreatment()
1147 Now the default behaviour consists on treating only the
1148 unsuitable pixels, and not also the ureliable, as it was
1149 before. If you want to keep on treating both unsuitable and
1150 unreliable pixels, please set the new flag on in your macro.
1151
1152 * mjobs/MJExtractCalibTest.cc
1153 - removed line containing SetSloppyTreatment()
1154
1155
1156
1157 2004/08/10: Thomas Bretz
1158
1159 * mpedestal/MPedestalPix.[h,cc]:
1160 - as discussed removed fValid
1161
1162 * mpedestal/MPedCalcFromPedRun.[h,cc],
1163 mpedestal/MPedCalcFromLoGain.[h,cc]:
1164 - removed dependancy on MBadPixelsCam
1165
1166 * mastro/MAstro.[h,cc]:
1167 - implemented GetMoonPeriod
1168 - implemented GetMoonPhase
1169
1170 * mbase/MTime.cc:
1171 - Fixed a floating point problem in Set(&tv)
1172 - added GetDateOfSunrise
1173
1174
1175
1176 2004/08/09: Markus Gaug
1177
1178 * mcalib/MHGausEvents.[h,cc]
1179 - added function IsOnlyOverflow()
1180
1181 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
1182 - put default arguments in the Clone() and the Draw() function
1183 (needed by e.g. TObject::DrawClone())
1184 - added name and title to the class (was forgotten)
1185
1186 * mjobs/MJPedestal.[h,cc]
1187 - set the possibility to have the datacheck display with the
1188 function SetDataCheckDisplay()
1189
1190
1191
1192 2004/08/09: Wolfgang Wittek
1193
1194 * mtemp/MStarLocalCam.[h,cc], mtemp/MStarLocalPos.[h,cc]
1195 - new variables added for the fit of a 2dim Gaussian with
1196 correlations
1197 - the corresponding Set and Get functions were added
1198 - the Paint function was extended correspondingly
1199
1200 * mtemp/MTelAxisFromStars.[h,cc]
1201 - new class (task) which determines the source position from star
1202 positions in the camera
1203
1204 * mtemp/MHTelAxisFromStars.[h,cc]
1205 - new class (container); produce plots for MTelAxisFromStars
1206
1207 * mtemp/MSkyCamTrans.[h,cc]
1208 - new class (task) ; container holding the parameters for the
1209 transformation from sky coordinates (projected onto the camera)
1210 to camera coordinates
1211
1212 * mtemp/Makefile, mtemp/TempLinkDef.h
1213 - MTelAxisFRomStars added
1214 - MHTelAxisFromStars added
1215 - MSkyCamTrans added
1216
1217 * mtemp/findTelAxisFromStars.C
1218 - new macro: extended version of findstars.C
1219 (in mtemp/mifae/macros/)
1220 - call to MTelAxcisFromStars and MHTelAxisFromStars
1221 was added
1222
1223 * mtemp/MFindStars.[h,cc]
1224 - add correlated Gauss fit
1225
1226
1227
1228 2004/08/06: Markus Gaug
1229
1230 * mcalib/MCalibrationTestCalc.[h,cc]
1231 * mcalib/Makefile
1232 * mcalib/CalibLinkDef.h
1233 - new class to retrieve the results of MHCalbirationTestCam
1234 - outputs the results of the bad pixels interpolation and the
1235 new relative flat-fielding of the camera.
1236
1237 * mjobs/MJExtractCalibTest.cc
1238 - uncomment (and use) the interpolation of bad pixels
1239 - use the class MCalibrationTestCalc
1240
1241 * mcalib/MHCalibrationChargeLoGainPix.cc
1242 - increase the default upper histogram limits for the
1243 large extraction windows.
1244
1245 * msignal/MExtractor.cc
1246 - fixed a bug in one possible output using Form()
1247 which produced a segm.violation in that case.
1248
1249 * mcalib/MHCalibrationTestCam.cc
1250 - adapt class for the interpolation of pixels.
1251
1252 * mcalib/MCalibrationChargeCalc.cc
1253 - fixed a small bug in the calculation of average number of
1254 photo-electrons
1255
1256
1257 2004/08/06: Nadia Tonello
1258
1259 * mimage/MImgCleanStd.cc:
1260 - in the Process, the Step3 (that checks the boundary pixels)
1261 is skipped when no action is espected, i.e. if lvl1 <= lvl2.
1262 This will accelerate the cleaning process in such cases.
1263
1264 * mbadpixels/MBadPixelsCalc.[h,cc]:
1265 - removed dependence on MSigmabar
1266
1267
1268
1269 2004/08/05: Thomas Bretz
1270
1271 * mastro/MAstroCatalog.[h,cc]:
1272 - changed return type of AddObject to Bool_t
1273 - changed Reading member function to use AddObject
1274
1275 * msignal/MArrivalTime.h:
1276 - Added missing ClassDef
1277
1278 * mhist/MHEvent.h:
1279 - Removed strange MCameraSignal
1280
1281
1282
1283 2004/08/05: Robert Wagner
1284
1285 * mastro/MAstroCatalog.[h,cc]
1286 - Added MAstroCatalog::AddObject, functionality to insert single
1287 objects manually; needed for mtemp/mmpi/MSourceDirections
1288
1289
1290
1291 2004/08/05: Thomas Bretz
1292
1293 * manalysis/MGeomApply.cc, mimage/MCameraSmooth.[h,cc]:
1294 - removed dependancy on MBlindPixel
1295
1296 * macros/sql/readrbk.C, msql/MSQLServer.cc:
1297 - fixed some memory leaks - the result of TSQLServer::Query
1298 must be deleted
1299
1300 * mbase/MTaskInteractive.cc:
1301 - added some comments
1302
1303 * mmain/MBrowser.cc:
1304 - fixed a bug which caused '/data/MAGIC' not to be shown in
1305 the dir-list
1306
1307 * mmc/MMcEvt.hxx:
1308 - added some more particle ids
1309
1310 * msql/MSQLServer.[h,cc]:
1311 - some improvements to the user interface
1312
1313 * macros/sql/filldotrun.C:
1314 - added
1315
1316
1317
1318 2004/08/04: Markus Gaug
1319
1320 * msignal/MExtractFixedWindowSpline.cc
1321 - replaced delete's of the array by a delete [].
1322
1323 * mjobs/MJCalibration.cc
1324 - replaced default time extractor by MExtractTimeFastSpline
1325
1326 * mbadpixels/MBadPixelsPix.cc
1327 - updated the class description
1328
1329
1330
1331 2004/08/04: Thomas Bretz
1332
1333 * manalysis/MBlindPixels.[h,cc], manalysis/MBlindPixelCalc.[h,cc],
1334 manalysis/MBlindPixelCalc2.[h,cc]:
1335 - as discussed some weeks ago the classes have been removed
1336
1337 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1338 - removed the MBlind* entries
1339
1340 * star.cc, mmain/MEventDisplay.cc, mmain/MOnlineDisplay.cc,
1341 mmain/MAnalysis.cc, mfileio/MCT1ReadPreProc.[h,cc]:
1342 - removed usage of MBlind*
1343 - MBadPixel* TO BE ADDED
1344
1345 * merpp.cc:
1346 - moved interpretation of command line options to MLog
1347 - added a check for unknown options
1348
1349 * manalysis/MCameraData.[h,cc]:
1350 - added some comments
1351 - fixed some errors in the documentation
1352 - changed ClassDef to 1
1353 - changed the new algorithms such that any number of different
1354 pixel-sizes are supported
1355 - small modifications to the sanity checks
1356
1357 * mbadpixels/MBadPixelsTreat.h:
1358 - fixed the argument type of SetNumMinNeighbors
1359
1360 * mbase/MArgs.cc:
1361 - comment updated
1362
1363 * mbase/MEvtLoop.cc:
1364 - added reading and writing of fLog environment
1365
1366 * mbase/MLog.[h,cc]:
1367 - added Reading and writing Environment (ReadEnv, WriteEnv)
1368 - added a function to setup MLog from command line arguments
1369
1370 * mbase/MTaskInteractive.[h,cc]:
1371 - added an example
1372
1373 * mbase/MTime.cc:
1374 - added a warning for the SetTimeFormat usage
1375
1376 * mimage/MImgCleanStd.[h,cc]:
1377 - some updates to the old comments
1378 - NEW COMMENTS FOR SCALED CLEANING STILL MISSING!
1379 - implemented scaled image cleaning
1380 - replaced usage of MSigmabar by MPedPhotCam for democratic cleaning
1381
1382 * manalysisct1, manalysisct1/Makefile,
1383 manalysisct1/AnalysisCT1LinkDef.h:
1384 - new
1385
1386 * manalysis/MCT1*, mfileio/structures.h, mfileio/MCT1Read*.[h,cc]:
1387 - moved to new directory manalysisct1
1388
1389 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1390 - updated
1391 - removed MPad because long time ago changed discuseed were not made
1392 (it doesn't compile anymore, because MBlindPixels is missing now)
1393
1394 * mfileio/Makefile, mfileio/FileIOLinkDef.h:
1395 - updated
1396
1397 * mbase/MLog.cc:
1398 - added missing kMustCleanup bit of fPlugins
1399
1400 * mbadpixels/MBadPixelsPix.h:
1401 - added easier access to the information whether a pixel is unsuitable
1402 or unreliable
1403
1404 * mbadpixels/MBadPixelsTreat.[h,cc]:
1405 - added SloppyTreatment
1406
1407
1408
1409 2004/08/03: Hendrik Bartko
1410
1411 * manalysis/MCameraData.[h,cc]
1412 - Added new function CalcCleaningLevel2 to take into account that
1413 the pedestal RMS does not scale with the inverse square root of
1414 the pixel area for the calculation of the cleaning levels.
1415 - Added new function CalcCleaningLevelDemocratic. It calculates
1416 the cleaning levels for the democratic image cleaning directly
1417 from the average values of MPedPhotCam instead of using
1418 MSigmabar.
1419
1420
1421
1422 2004/08/03: Thomas Bretz
1423
1424 * macros/sql:
1425 - new directory
1426
1427 * macros/sql/readrbk.C:
1428 - new macro
1429
1430 * mjobs/MJExtractSignal.cc:
1431 - fixed missing initialisation of fExtractor, fExtractorTime
1432
1433
1434
1435 2004/07/30: Robert Wagner
1436
1437 * mastro/MAstroCamera.[h,cc]
1438 - Added method FillStarList() which fills a TList with objects
1439 of type MStarLocalPos for all stars found from the catalog
1440 matching specified criteria (FOV, magnitude limit, position)
1441 - Lines involving MStarLocalPos have been commented out for
1442 the time being since MStarLocalPos is not part of standard
1443 MARS yet!
1444
1445 * mtemp/MStarLocalPos.[h,cc]
1446 - Added handling of the minuit error matrix elements to
1447 MStarLocalPos::MSetFitValues
1448 - Added member variables to hold error matrix elements
1449 - Added getters for error matrix elements
1450 - Expected star position is painted by Paint, too.
1451 - Error matrix elements are printed by Print, too.
1452
1453
1454
1455 2004/07/28: Javi Lopez
1456
1457 * mhist/MHCamera.[h,cc]
1458 - Added new argument to CntCamContent() funtion to select to count
1459 the events above or bellow a certain discriminator level.
1460
1461
1462
1463 2004/07/20: Florian Goebel
1464
1465 * mpedestal/MPedestalPix.[h,cc]
1466 - added:
1467 + fPedestalABoffset: difference between pedestal mean of odd slices
1468 and the total pedestal mean (fPedestal)
1469 + fNumEvents: number of times, the Process was executed
1470 (to estimate the error of pedestal)
1471
1472 * mpedestal/MPedestalCam.cc
1473 - calculate error using pixel vise fNumEvents
1474
1475 * mpedestal/MPedCalcFromLoGain.[h,cc]
1476 * mpedestal/Makefile
1477 * mpedestal/PedestalLinkDef.h
1478 - added class which calculates pedestal values from the low gain
1479 slices of a data run
1480 - it also calculates the ABoffset values and fills MPedestalPix
1481 accordingly
1482
1483 * macros/ScanPulseABPed.C
1484 - macro plotting the pulse shape using MPedCalcFromLoGain
1485 and correcting for the AB 150 MHz clock noise.
1486
1487 * msignal/MExtractSignalABcorr.[h,cc]
1488 * msignal/Makefile
1489 * msignal/SignalLinkDef.h
1490 - example for signal extractor class similar to MExtractSignal
1491 correcting for ABoffset which allows to use odd number of slices
1492
1493 * macros/ScanExtractSignalABCorr.C
1494 - macro using MExtractSignalABcorr
1495
1496
1497
1498 2004/07/16: Markus Gaug
1499
1500 * msignal/MExtractFixedWindowSpline.cc
1501 - replace the delete's by delete [].
1502
1503 * mcalib/MHCalibrationChargeCam.cc
1504 - remove some obsolete commented code
1505
1506 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
1507 - derive only from MHGausEvents and not additionally from
1508 MHCalibrationChargePix
1509 - Additional setter for MCalibrationChargeBlindPix, used by
1510 MHCalibrationChargeBlindCam
1511 - Getter for fSinglePheCut
1512 - adapted Draw for the "datacheck" option
1513 - use variable histogram range depending on whether amplitude
1514 or integral has been extracted
1515
1516 * mcalib/MCalibrationChargeBlindCam.[h,cc]
1517 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
1518 * mcalib/Makefile
1519 * mcalib/CalibLinkDef.h
1520 - two new classes for the treatment of various blind pixels in the
1521 camera
1522
1523 * mcalib/MCalibrationChargeCalc.[h,cc]
1524 - adapted to use of various blind pixels
1525
1526
1527
1528 2004/07/15: Markus Gaug
1529
1530 * mcalib/MHCalibrationChargeCam.[h,cc]
1531 - hard coded the reference lines for the DataCheck Display.
1532 Should be faster and easier to read than the TArrayF's.
1533
1534 * mcalib/MCalibrationChargeCalc.[h,cc]
1535 - removed obsolete pointer to MEvtTime
1536 - fixed bug in calculation of RMS for FFactor of inner pixels
1537 in case that the fit does not converge.
1538 - introduced blind pixel and PIN Diode result flags for later
1539 output or storage in DB.
1540
1541
1542
1543 2004/07/14: Hendrik Bartko
1544
1545 * mpedestal/MPedPhotCam.[h,cc]
1546 - added average areas and sectors (in analogy MPedestalCam)
1547 - added new function InitAreas(const UInt_t i)
1548 - added new function InitSectors(const UInt_t i)
1549 - added new function GetNumAreas()
1550 - added new function GetNumSectors()
1551 - added new function ReCalc, computes the average values for the
1552 sectors from all pixels which are not marked
1553 MBadPixelsPix::kUnsuitableRun
1554
1555 * mpedestal/MPedPhotPix.[h,cc]
1556 - added a variable for the number of events from which the
1557 pedestals are computed
1558
1559 * manalysis/MGeomApply.cc
1560 - changed initialization of MPedPhotCam
1561
1562 * msignal/MExtractTimeHighestIntegral.cc
1563 - implemented the time calculation respective to the zero FADC
1564 time sample, not respective to the first sample of the chosen
1565 range
1566
1567 * msignal/MArrivalTimeCalc2.cc
1568 - implemented the time calculation respective to the zero FADC
1569 time sample, not respective to the first sample of the chosen
1570 range
1571
1572
1573
1574 2004/07/14: Markus Gaug
1575
1576 * msignal/MExtractedSignalBlindPixel.[h,cc]
1577 - added new function GetNumBlindPixels()
1578 - added more comments
1579
1580 * msignal/MExtractBlindPixel.[h,cc]
1581 - adapted to new configuration of now three blind pixels
1582 - runs with run number smaller than 31693 are treated in the old way
1583 - runs with run number higher than 31693 have no more NSB filter,
1584 but possibility to choose between integral or amplitude (with spline)
1585 extraction. Default is amplitude.
1586
1587 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
1588 - use the variable fPixId to design an ID to the class.
1589 Later, a new class MHCalibrationChargeBlindCam can host
1590 the different blind pixels as individual
1591 MHCalibrationChargeBlindPix.
1592 - Default ID is 0 which is also default in MExtractedSignalBlindPix
1593 - for current code, nothing has thus changed so far...
1594
1595 * msignal/MExtractAmplitudeSpline.cc
1596 - fixed a bug causing a segmentation violation in the destructor
1597 (array dimension was not respected correctly)
1598
1599 * mcalib/MHGausEvents.cc
1600 - removed an inconsistency in the naming of fHPowerProbability which
1601 can cause a memory leak (I hope, this was the cause of some of the
1602 leaks we had, but I'm not sure).
1603 - removed the setting of fPixId to -1 in the Clear()
1604
1605
1606
1607 2004/06/30: Thomas Bretz
1608
1609 * mbase/MEvtLoop.[h,cc]:
1610 - overwrite ReadEnv with a new function taking the
1611 name of the setup file as argument
1612
1613 * mjobs/MJPedestal.[h,cc]:
1614 - added setup file name as argument to
1615
1616 * mjobs/MJPedestal.[h,cc]:
1617 - implemented a new data member fEnv
1618 - implemented new setter SetEnv
1619 - some small changes towards setup files
1620 - some simplifications to line drawing
1621
1622 * msignal/MExtractor.[h,cc]:
1623 - added ReadEnv member function
1624 - removed obsolete virtual qualifiers in header
1625 - simplified usage of Form()
1626
1627 * mraw/MRawFileWrite.[h,cc]:
1628 - moved writing of RunHeaders from PreProcess to new ReInit
1629
1630
1631
1632 2004/06/29: Thomas Bretz
1633
1634 * mpedestal/MPedCalcFromData.[h,cc]
1635 - changed data member names according to coding rules
1636
1637
1638
1639 2004/06/25: Pepe Flix
1640
1641 * mpedestal/MPedCalcFromData.[h,cc]
1642 - added class to evaluate pedestal mean/RMS from real data events.
1643 Low Gain samples used when no switch to LG happened.
1644
1645 * macros/PedCalcFromData.C
1646 - added macro that uses the class to evaluate pedestals from real
1647 data.
1648
1649
1650
1651 2004/06/23: Markus Gaug
1652
1653 * macros/calibration.C
1654 - added flag to skip the testing
1655 - added calibration of pedestal files and creation of F2-files.
1656
1657 * macros/bootcampstandardanalysis.C
1658 - updated to use MJExtractSignal
1659
1660 * mcalib/MHGausEvents.cc
1661 - give a unique name to fHPowerProbability, otherwise
1662 MH::ProjectArray will use an existing one.
1663
1664
1665
1666 2004/06/18: Markus Gaug
1667
1668 * manalysis/MHPedestalCam.[h,cc]
1669 - use flag to choose if one wants to re-normalize the histogram
1670 results
1671
1672 * mhist/MHCamera.[h,cc]
1673 - added one argument to CntCamContent to tell if event above or
1674 below threshold have to be counted. Default is above, like before
1675 - added one argument to Projection and ProjectionS giving the number
1676 of bins as argument (default 50 like before)
1677
1678 * mcalib/MCalibrationChargeCalc.cc
1679 - replaced extraction of mean number of photo-electrons and mean
1680 F-Factor by a Gauss fit (instead of mean and RMS). Set the
1681 limit for deviating F-Factor from 3.5 to 4.5. This should reduce
1682 the number of uncalibrated pixels below 50 again (which was not
1683 the case in the last weeks).
1684
1685 * mcalib/MHGausEvents.h
1686 - make DrawEvents() public
1687
1688 * mcalib/MHCalibrationChargeLoGainPix.cc
1689 - upper histogram limit lowered for the better visibility in the
1690 data check.
1691
1692 * mcalib/MHCalibrationChargeCam.[h,cc]
1693 - adapted Draw for the datacheck
1694
1695 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
1696 - adapted for various blind pixels
1697 - adapted Draw for the datacheck
1698
1699 * msignal/MExtractor.[h,cc]
1700 * msignal/MExtractFixedWindow.[h,cc]
1701 * msignal/MExtractSlidingWindow.[h,cc]
1702 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
1703 * msignal/MExtractFixedWindowSpline.[h,cc]
1704 - made sum in FindSignal() float which is now the variable used by
1705 the majority of the extractors.
1706
1707 * msignal/MExtractAmplitudeSpline.[h,cc]
1708 - new extractor calculating the amplitude using a spline.
1709
1710 * mcalib/MCalibrationPix.[h,cc]
1711 * mcalib/MCalibrationChargePix.[h,cc]
1712 * mcalib/MCalibrationChargeCalc.[h,cc]
1713 - added debug flags and output on debug
1714
1715 * mbadpixels/MBadPixelsCam.cc
1716 - enlarged the Print-function
1717
1718
1719
1720 2004/06/17: Markus Gaug
1721
1722 * mjobs/MJPedestal.[h,cc]
1723 - adapted display for the datacheck
1724
1725 * mcalib/MHCalibrationChargeCam.[h,cc]
1726 - new function Draw for the datacheck
1727 - new clone function for the DrawClone
1728
1729 * mcalib/MHCalibrationCam.h
1730 - make clone function virtual
1731
1732 * mjobs/MJCalibration.cc
1733 - adapted display for the datacheck
1734
1735 * mcalib/MHGausEvents.h
1736 - two new getters for fFirst and fLast
1737
1738 * mhist/MHCamera.h
1739 - make SetUsed() and Fill(x,w) public. It is now possible to use the
1740 Fill-function together with the SetUsed(idx), when no
1741 SetCamContent(...) is available.
1742 Previously, only a Fill(x,y,w) was public, with x and y positions
1743 in the camera.
1744
1745 * mjobs/MJPedestal.[h,cc]
1746 - updated the data-check display
1747
1748
1749
1750 2004/06/12: Abelardo Moralejo
1751
1752 * manalysis/MMcCalibrationUpdate.cc
1753 * mcalib/MMcCalibrationCalc.[h,cc]
1754 - Fixed mistake in the calibration which occurred only when
1755 different light collection efficiency was simulated for outer
1756 pixels.
1757
1758 * manalysis/MMcCalibrationUpdate.[h,cc]
1759 - Adapted to the possibility of having different light collection
1760 efficiencies in inner and outer pixels. For now we assume that the
1761 dependence with incidence angle on the camera plane is the same
1762 for both types of pixels.
1763
1764
1765
1766 2004/06/12: Markus Gaug
1767
1768 * msignal/MExtractFixedWindow.cc
1769 - output the number and exact range of extraction to *fLog in the
1770 ReInit(), like it is done by MPedCalcPedRun
1771
1772 * macros/bootcampstandardanalysis.C
1773 - exchanged MArrivalTimeCalc2 in 4th loop by timeext (defined
1774 in the beginning)
1775
1776
1777
1778 2004/06/11: Markus Gaug
1779
1780 * mpedestals/MPedCalcPedRun.cc
1781 - set the default upper range to 29, because otherwise the extraction
1782 window will be made too small in case that more than 14 "high-gain"
1783 slices shall be extracted. This is a bugfix! It calculated wrong
1784 pedestals in case that the user says: SetRange(a,b), where b is
1785 bigger than 14 in combination with SetWindowSize(x) where x is bigger
1786 than 14 as well (instead of : SetRange(a,b,c,d), where
1787 everything went fine). However, the intention of the last months
1788 changes was to allow exactly also the first possibility.
1789
1790 * mjobs/MJCalibration.cc
1791 - put run 27474 in list of unavailable runs (see runbook)
1792
1793
1794
1795 2004/06/08: Markus Gaug
1796
1797 * mhist/MHCamera.cc
1798 - reduce number of default bins in AzimuthProfile
1799 - use MatchSector in AzimuthProfile, like in RadialProfile
1800
1801 * mcalib/MCalibrationChargeCalc.cc
1802 - fix lower limit for deviation F-Factor to 1.1. This discarts a
1803 smaller number of especially outer pixels in some runs taken with
1804 the CT1 pulser box.
1805
1806
1807
1808 2004/06/07: Markus Gaug
1809
1810 * mcalib/MHCalibrationCam.h
1811 - add a function GetSize()
1812
1813 * msignal/MExtractTimeFastSpline.cc
1814 - fixed a bug introduced on 1.6. and accelerate it a bit.
1815
1816
1817
1818 2004/06/04: Markus Gaug
1819
1820 * mcalib/MHGausEvents.cc
1821 - some small modifications in the way the axes are drawn and their
1822 titles are drawn.
1823
1824
1825
1826 2004/06/03: Martin Merck
1827
1828 * msignal/MArrivalTimeCam.h
1829 * msignal/MArrivalTime.h
1830 * msignal/MArrivalTimePix.h
1831 * msignal/MExtractedSignalCam.h
1832 * msignal/MExtractedSignalPix.h
1833 * msignal/MExtractedSignalPINDiode.h
1834 * msignal/MExtractedSignalBlindPixel.h
1835 - Set version in ClassDef to 1 for the streamer.
1836
1837 * msignal/SignalLinkDef.h
1838 - Added a + at the pragma for MExtractedSignalCam and
1839 MExtractedSignalPix for consistency.
1840
1841 * msjobs/MExtractSignal.[h,cc]
1842 - Added methods to set the Extractor and TimeExtractor to be
1843 used when extracting the signal.
1844
1845
1846
1847 2004/06/03: Markus Gaug
1848
1849 * mhist/MHCamera.[h,cc]
1850 * mjobs/MJCalibration.cc
1851 - added functions AzimuthProfile and DrawAzimuthProfile, same
1852 like the RadialProfile functions, only with azimuth instead of
1853 radius.
1854
1855 * mcalib/MCalibrationCam.[h,cc]
1856 - replace fNumHiGainFADCSlices and fNumLoGainFADCSlices by a
1857 TArrayF and increment ClassDef by 1 for the streamer.
1858
1859 * mcalib/MCalibrationChargeCalc.cc
1860 - found a small bug making a difference in the number of valid
1861 pixels with the blind PIxel method and the ffactor method. Now
1862 fixed. (The difference was usually a couple of pixels)
1863
1864 * msignal/MExtractTime.h
1865 - make members protected instead of private in order to allow
1866 classes to derive from it
1867
1868 * msignal/MExtractFixedWindow.cc
1869 - added some documentation
1870
1871 * msignal/MExtractFixedWindowSpline.[h,cc]
1872 * msignal/Makefile
1873 * msignal/SignalLinkDef.h
1874 - new fast spline signal extractor
1875
1876
1877
1878 2004/06/02: Antonio Stamerra
1879
1880 * mtrigger/*:
1881 - added directory and new classes to correctly handle the
1882 trigger-report string from report file.
1883 Not yet into the Makefile.
1884
1885
1886
1887 2004/06/01: Thomas Bretz
1888
1889 * mbase/MLog.[h,cc]:
1890 - some changes to Lock/UnLock of mutices. Necessary for Cosy.
1891
1892
1893
1894 2004/06/01: Abelardo Moralejo
1895
1896 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
1897 - Added variable fLowGainPeakShift and setter. It allows to shift
1898 the integration window for low gain with respect to the one of
1899 the high gain. By default its value is 0 (corresponding to a
1900 total delay of 15 slices) so that default behaviour of the
1901 extractor is the same as before.
1902
1903
1904
1905 2004/06/01: Markus Gaug
1906
1907 * mjobs/MJCalibration.cc
1908 - small change in the way the "full display" is displayed
1909
1910 * mcalib/MHCalibrationChargeBlindPix.cc
1911 * mcalib/MHCalibrationChargePix.cc
1912 - replace Draw(opt) by Draw(). This make the histograms reappear
1913 again, although I have no idea why. A printout of the opt gives
1914 always empty.
1915
1916 * mcalib/MCalibrationQEPix.cc
1917 - put Eckarts transmission of the plexiglass into the class
1918 documentation
1919
1920 * msignal/MExtractTimeFastSpline.cc
1921 - fixed some smaller bugs affecting a small part of the signals
1922
1923
1924 2004/05/31: Hendrik Bartko
1925
1926 * msignal/MArrivalTimeCalc2.cc
1927 - fixed a bug in pointer arithmetics found by Florian.
1928
1929
1930
1931 2004/05/31: Raquel de los Reyes
1932
1933 * macros/DAQDataCheck.C
1934 - committed the macro to check the raw data and display the quality
1935 plots.
1936
1937
1938
1939 2004/05/30: Markus Gaug
1940
1941 * mcalib/MCalibrationQEPix.[h,cc]
1942 - added more documentation (plots)
1943 - separated calls for light guides eff. , QE, and coll. eff.
1944
1945 * mcalib/MCalibrationChargeCalc.[h,cc]
1946 - fixed a small bug in the calculation of the error on the number
1947 of photons with the F-Factor method, did not include the division
1948 by number of pixels for the precision of the QE. This does not
1949 affect the general analysis.
1950
1951 * mjobs/MJCalibration.cc
1952 - added runnumber 26924 to list of runs without clear colour in
1953 the file name.
1954
1955
1956
1957 2004/05/28: Markus Gaug
1958
1959 * macros/calibration.C
1960 - make the macro compilable with possibility to run it in batch
1961 mode.
1962
1963 * msignal/MExtractor.cc
1964 - put an additional check in case that the number of FADC slices
1965 in the run header is smaller or equal to 0.
1966
1967
1968
1969 2004/05/27: Javier Rico
1970
1971 * mbase/MDirIter.h
1972 - remove unneeded ResetIter method (Reset does all the job)
1973
1974 * mjobs/MJCalibration.cc
1975 - change call to the removed MDirIter::ResetIter for Reset
1976
1977
1978
1979 2004/05/27: Markus Gaug
1980
1981 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
1982 - put some protection against zero-division in fitFuncMichele
1983
1984 * mcalib/MCalibrationChargeBlindPix.[h,cc]
1985 - set flag to distinguish between coated and un-coated blind pixel
1986 - increase ClassDef number by one.
1987
1988 * mcalib/MCalibrationQEPix.[h,cc]
1989 - set a global variable CollEfficiency and LightguidesEfficiency.
1990 The more precise result for the QE calculated with
1991 the F-Factor method differs now by about 5% (while the statistical
1992 error remains around 20%).
1993
1994 * mcalib/MCalibrationChargeCalc.cc
1995 - write the number of photons directy into MCalibrationChargeCam.
1996 These numbers would otherwise have to be assembled by different
1997 parts in separate code.
1998
1999
2000
2001 2004/05/27: Thomas Bretz
2002
2003 * mastro/MAstroCatalog.cc
2004 - removed a statement after '#endif'
2005
2006 * mastro/MAstroCamera.h
2007 - removed obsolete empty function which (believing the Changelog)
2008 are not there at all!
2009
2010 * mbase/MDirIter.[h,cc]:
2011 - moved code of Reset() funtion to source file
2012 - added more comments to Reset function
2013
2014
2015
2016 2004/05/26: Martin Merck
2017
2018 * mbase/MDirIter.cc
2019 - changed MatchFilter to allow for filenames containing a '+'
2020 character.
2021
2022
2023
2024 2004/05/26: Markus Gaug
2025
2026 * mjobs/MJCalibration.[h,cc]
2027 - set MCalibrationChargeBlindPix and MCalibrationChargePINDiode as
2028 data members and store them in the output of WriteResult()
2029
2030 * mcalib/MCalibrationQEPix.cc
2031 * mcalib/MCalibrationChargeCalc.cc
2032 - several small bugs fixed concerning calibration with the blind
2033 pixel or the PIN Diode
2034
2035 * mjobs/MGCamDisplays.[h,cc]
2036 * mhist/MHCamera.[h,cc]
2037 - put the last function (CamDraw) of MGCamDisplays into MHCamera
2038 and removed MGCamDisplays.
2039
2040 * mjobs/MJPedestal.[h,cc]
2041 * mjobs/MJCalibration.[h,cc]
2042 * mjobs/MJExtractCalibTest.[h,cc]
2043 - don't derive from MGCamDisplays any more.
2044
2045 * msignal/MExtractBlindPixel.cc
2046 - adjusted some default numbers for the current blind pixel
2047
2048 * msignal/MExtractedSignalBlindPixel.[h,cc]
2049 - set extracted signal from UInt_t to Int_t (sometimes, less
2050 than 0)
2051
2052 * mcalib/MCalibrationCam.h
2053 * mcalib/MHCalibrationCam.h
2054 - make destructors virtual.
2055
2056 * mcalib/MHCalibrationCam.[h,cc]
2057 - create a copy contructor
2058
2059
2060
2061 2004/05/26: Javier Rico
2062
2063 * mbase/MDirIter.h
2064 - Add method to reset the internal TIter iterator
2065
2066 * mjobs/MJCalibration.cc
2067 - In FindColorReset method, reset the file iterator before looping
2068
2069 * mimage/MNewImagePar.cc
2070 - Add output lines in Print(const MGeomCam &geom) method for
2071 fInnerLeakage1, fInnerLeakage2 and fInnerSize
2072
2073
2074
2075 2004/05/25: Raquel de los Reyes and Thomas Bretz
2076
2077 * mjobs/MJCalibration.cc
2078 - uncommented the line to read .raw files.
2079
2080 * mraw/MRawFileRead.cc
2081 - changed the PreProcess and Process functions to allow the analysis
2082 of .raw files.
2083
2084 * mfileio/MReadReports.cc
2085 - changed the Process function to read the updated root files.
2086
2087
2088
2089 2004/05/25: Markus Gaug
2090
2091 * mjobs/MJCalibration.[h,cc]
2092 - add possibility to switch on and off the blind pixel or pin diode
2093 calibration
2094 - fixed a small bug in reading the MCalibrationRelTimeCam when the
2095 times calibration has been switched off.
2096
2097 * mjobs/MExtractSignal.[h,cc]
2098 - made changes in MProcessFileP such that it fits with the new
2099 calibration. THIS IS ONLY A TEMPORARY SOLUTION. PEDESTALS AND
2100 DATA FILES MUST BE TREATED EQUALLY! OTHERWISE THERE IS NOT
2101 MATCHING FOR THE HIT CLEANING!!!
2102
2103 * mjobs/MJExtractCalibTest.[h,cc]
2104 - implement switch to use or not the cosmics filter
2105
2106
2107 * mcalib/MHCalibrationTestPix.cc
2108 - enlarged the dynamic range of the histograms for the high-int.
2109 pulses
2110
2111
2112
2113 2004/05/24: Javier Rico
2114
2115 * mpedestal/MPedPhotCalc.cc
2116 - Correct a bug that made pedestals be assigned to the wrong pixel
2117
2118 * mimage/MNewImagePar.[h,cc]
2119 - add getters and output lines in Print() method for
2120 fInnerLeakage1, fInnerLeakage2 and fInnerSize
2121
2122
2123
2124 2004/05/24: Markus Gaug
2125
2126 * mcalib/MCalibrationChargePix.cc
2127 - reduce limit in number of phe's from 5 to 1. since some pulses
2128 have less than 5 phe's now.
2129
2130 * mcalib/MHCalibrationTestCam.[h,cc]
2131 - number of photons/area are now stored in TArray's in order to
2132 retrieve them easier in later processing from stored files.
2133
2134 * mcalib/MCalibrationCam.cc
2135 - initialize AverageAreas and AverageSectors with the number of
2136 aidx and sector as SetPixId()
2137
2138 * mcalib/MCalibrationChargeCam.[h,cc]
2139 - small modification in the Print()
2140 - introduce data members to store the average number of photons by
2141 the three methods
2142
2143 * mcalib/MCalibrationChargeCalc.cc
2144 - calculate the limits for acceptance of number of photo-electrons
2145 for the calculation of the mean by normal mean instead of weighted
2146 mean. There were too many outliers still present in the weighted
2147 mean such to modify the result by a sizeable amount.
2148 - do not discard unreliable pixels any more in calculation of
2149 mean number of phe.s In some runs, there is simply too many of
2150 them in order to get reliable results.
2151
2152 * mpedestals/MPedCalcPedRun.cc
2153 - put a condition if number of pixels in area index or in sector
2154 is zero, don't calculate av. pedestal and av. pedRMS of this part.
2155
2156
2157
2158 2004/05/22: Markus Gaug
2159
2160 * mjobs/MJPedestal.[h,cc]
2161 * mjobs/MJCalibration.[h,cc]
2162 * mjobs/MJExtractCalibTest.[h,cc]
2163 - replaced the TString GetOutputFile() functions by const char*
2164 GetOutputFile(). This apparenty caused a memory leak which is now
2165 removed.
2166
2167 * mcalib/MCalibrationChargePix.cc
2168 - fixed bug calculating the reduced sigma for low-gain events:
2169 the electronics Ped.RMS was taken from Hi-gain pedestal events and
2170 too high. It is now divided by the factor 10. conversion between
2171 both samples, but this value is probably too optimistic. Needs
2172 more detailed studies, but does not exclude as many pixels as
2173 before.
2174
2175 * mcalib/MHCalibrationChargePix.h
2176 * mcalib/MHGausEvents.h
2177 - put fSaturated from MHCalibrationChargePix into MHGausEvents
2178
2179 * mcalib/MHCalibrationChargeCam.[h,cc]
2180 * mcalib/MHCalibrationCam.h
2181 - put fNumHiGainSaturated and fNumLoGainSaturated from
2182 MHCalibrationChargeCam into MHCalibrationCam
2183
2184 * mcalib/MHCalibrationRelTimeCam.[h,cc]
2185 - set flags fSaturated in order to distinguish if the hi-gain or
2186 the low-gain time has been extracted.
2187
2188 * mcalib/MHCalibrationCam.cc
2189 - remove cloning of all pixels on the Clone() function. This caused
2190 the need for three times more memory during runtime than now. It
2191 should not affect the current macros.
2192
2193 * macros/calibration.C
2194 - added a debug switch with which you can print out Object
2195 Allocation (like suggested by TBretz).
2196
2197 * mcalib/MCalibrationRelTimeCalc.[h,cc]
2198 - replaced the relative limit for acceptance of the time resolution
2199 by an absolute limit
2200 - set up output statistics logging (data written into DB)
2201
2202 * mcalib/MCalibrationChargeCalc.[h,cc]
2203 - moved limit for acceptance of number of phe;s from 5 to 8
2204 - set up output statistics logging (data written into DB)
2205
2206 * mjobs/MJCalibration.cc
2207 - set up output statistics logging (data written into DB)
2208
2209
2210
2211 2004/05/22: Abelardo Moralejo
2212
2213 * macros/calibrate_data.C
2214 - removed wrong call to MPedCalcPedRun::SetExtractor, which does
2215 not exist (should use MJPedestal like calibration.C, instead of
2216 a normal loop)
2217
2218 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2219 - changed name of variable fOffsetFromPeak to fOffsetFromWindow
2220 to avoid confusion.
2221 - introduced initialization to 0 of startslice and sat in FindPeak
2222 - changed initialization of maxsumhi in Process from 0 to -1e6
2223
2224
2225
2226 2004/05/20: Raquel de los Reyes
2227
2228 * mraw/MRawRead.h
2229 * mraw/Makefile
2230 * msql/Makefile
2231 - changed the inheritance of MRawRead class from MTask to MRead to
2232 implement the AddFiles(MDirIter &) function in MRawFileRead class.
2233
2234 * mraw/MRawFileRead.[h,cc]
2235 - implemented a second argument to the AddFile function and skip
2236 adding NULL files in the constructor.
2237
2238 * mjobs/MJPedestal.cc
2239 - uncommented the line to allow the analysis of .raw files.
2240
2241
2242
2243 2004/05/20: Markus Gaug
2244
2245 * mjobs/MJPedestal.cc
2246 - put MGeomCamMagic into the plist (MGeomApply complained not to
2247 find the GeomCam(
2248
2249 * msignal/MExtractFixedWindowPeakSearch.cc
2250 - fixed a bug affecting signals with late arrival times which use
2251 the variable fHiLoLast.
2252 - set back fgOffsetFromPeak from peak to 1 (instead of 2). Abelardo
2253 explained that this variable is not strictly the offset from the
2254 peak but the offset from the peak search window.
2255
2256
2257
2258 2004/05/19: Markus Gaug
2259
2260 * mcalib/MCalibrationChargeCam.cc
2261 - replaced a small bug in Print() which gave a segmentation
2262 violation
2263
2264 * mjobs/MJCalibration.cc
2265 - use cosmics filter only for CT1 pulser runs
2266
2267
2268
2269 2004/05/19: Abelardo Moralejo
2270
2271 * mbase/MGMap.cc
2272 - replaced rint by TMath::Nint() (my Mac did not recognize the
2273 former)
2274
2275
2276
2277 2004/05/19: Abelardo Moralejo
2278
2279 * macros/starmc2.C
2280 - added third argument in adding MPointingPos to the output:
2281 write.AddContainer("MPointingPos", "Events", kFALSE);
2282 If not exisiting in the input file, it is simply ignored.
2283
2284
2285
2286 2004/05/15: Thomas Bretz
2287
2288 * mastro/MAstroCatalog.[h,cc]:
2289 - changed Form to MString for thread safty
2290 - fixed a bug which caused the construtor to crash in batch-mode
2291 - added option argument to PaintImg
2292
2293 * mbase/MGMap.[h,cc]:
2294 - added many new static member function to draw figures
2295
2296 * mbase/MParContainer.cc:
2297 - changed Form to MString for thread safty
2298
2299 * mbase/MString.[h,cc]:
2300 - added
2301
2302 * mbase/Makefile, mbase/BaseLinkDef.h:
2303 - added MString
2304
2305
2306
2307 2004/05/15: Markus Gaug
2308
2309 * msignal/MArrivalTimePix.h
2310 * msignal/MArrivalTimeCam.cc
2311 - introduced functin GetHiGainSaturation() in MArrivalTimePix.h
2312 - added type in GetPixelContent() which asks for Hi-Gain saturation
2313 and return the hi-gain time or the low-gain time, correspondingly.
2314
2315 * mbase/MGMap.cc
2316 - fixed two bugs which did not complile under gcc 3.3.x introduced
2317 by TB.
2318
2319
2320
2321 2004/05/12: Markus Gaug
2322
2323 * msignal/MExtractTime.[h,cc]
2324 - introduced intrinsic delay of low-gain, as measured by Florian.
2325
2326 * mjobs/MJCalibration.cc
2327 * mjobs/MJExtractCalibTest.cc
2328 - fixed some errors in the storage of the rel. times.
2329
2330 * mjobs/MJExtractCalibTest.cc
2331 - put the cosmics filter which was forgotten
2332
2333 * mcalib/MCalibrate.h
2334 - changed default from Blindpixel to Ffactor
2335
2336
2337
2338 2004/05/12: Thomas Bretz
2339
2340 * mona.cc:
2341 - changed names
2342
2343 * macros/sumcurrents.C:
2344 - changed units from nA to \\mu A
2345
2346 *: mastro/MAstroCamera.[h,cc]:
2347 - added '=' Draw option
2348 - use fMapG directly
2349
2350 * mastro/MAstroCatalog.[h,cc]:
2351 - added support to read and write a compressed catalog
2352 - changed TExMap to new MGMap
2353 - added support for HeasarcPPM catalog
2354 - added PaintImg to paint catalog into a bitmap (used in
2355 starguider software)
2356 - don't clone MObservatory copy the contents
2357 - changed type of dx and dy in DrawLine from Double to Int
2358 - fixed drawig of the tooltip corresponding to the grid
2359 (some were missing, some were existing twice)
2360 - Now AddPrimitives takes fLimMag into account
2361
2362 * mhbase/MFillH.cc:
2363 - added a const-qualifier
2364
2365 * mhist/MHCamera.cc:
2366 - fixed a bug which caused SetPalette in the constructor to crash
2367
2368 * mbase/MGMap.[h,cc]:
2369 - added
2370
2371 * mbase/Makefile, mbase/BaseLinkDef.h:
2372 - added MGMap
2373
2374
2375
2376 2004/05/11: Thomas Bretz
2377
2378 * mraw/MRawEvtHeader.cc:
2379 - added a check whether the file has finished or not after
2380 reading the first bytes.
2381
2382
2383
2384 2004/05/10: Marcos Lopez
2385
2386 * mmontecarlo/MMcEnergyEst.cc:
2387 - In static void fcn(...), fixed the following bugs which caused a
2388 "segmentation violation":
2389 - Replace: MTaskList *tlist = evtloop->GetTaskList()
2390 by: MTaskList *tlist = (MTaskList*)plist->FindObject("MTaskList")
2391 - And get the pointer *eval to MParamterD("MFitResult"), after
2392 the excution of the Eventloop and not before it (since that object is
2393 created when calling the PreProcess).
2394
2395
2396
2397 2004/05/10: Thomas Bretz
2398
2399 * mraw/MRawEvtHeader.[h,cc]:
2400 - changed return type of ReadEvt from int to Int_t
2401 - Enhanced output in case of invalid time
2402
2403 * mraw/MRawRead.cc:
2404 - fixed the return type of ReadEvt (was bool instead of int)
2405 which confused merpp completely in case of invalid times
2406
2407
2408
2409 2004/05/10: Markus Gaug
2410
2411 * macros/calibrate_data.C
2412 - updated setting of arr. time extractor
2413
2414
2415
2416 2004/05/09: Thomas Bretz
2417
2418 * Makefile:
2419 - added workaround for Mac to create so- and dynlib-object
2420
2421 * Makefile.conf.darwin:
2422 - added necessary option to create both kind of files
2423
2424 * Makefile.conf.linux:
2425 - changed the options to create so-object only
2426
2427 * Makefile.rules:
2428 - added DYLIB to rmbin
2429
2430 * mraw/MRawEvtData.cc:
2431 - changed some output
2432
2433 * mraw/MRawEvtHeader.[h,cc]:
2434 - skip the rest of the header if the time is invalid. Otherwise
2435 merpps force-mode will corrupt the data when further processing
2436 - implemented GetNumBytes returning the size of the header
2437
2438
2439
2440 2004/05/08: Thomas Bretz
2441
2442 * mona.cc:
2443 - some changes to make it work again
2444
2445 * mraw/MRawSocketRead.cc:
2446 - fixed the sync with what DAQ sends
2447
2448
2449
2450 2004/05/07: Markus Gaug
2451
2452 * mcalib/MHCalibrationChargeHiGainPix.cc
2453 * mcalib/MHCalibrationChargeLoGainPix.cc
2454 - take out half of the bins for the hists in order to save memory
2455
2456 * mjobs/MExtractCalibTest.cc
2457 - include write-out of the containers in the loop
2458
2459 * mjobs/MJCalibration.cc
2460 - take runs 20660 and 20661 into the list of known runs with colour
2461 green.
2462
2463 * mpedestal/MPedCalcPedRun.[h,cc]
2464 - make the arrays fSum and fSum2 doubles. This is necessary since
2465 rounding errors of the floats introduced significant errors in the
2466 RMS!
2467 - introduced one condition about possible window sizes of 0.
2468
2469
2470
2471 2004/05/06: Markus Gaug
2472
2473 * htmldoc/images/PedestalStudyInner.gif
2474 * htmldoc/images/PedestalStudyOuter.gif
2475 - two gifs used for the documentation of MPedCalcPedRun
2476
2477 * mpedestal/MPedCalcPedRun.cc
2478 - updated documentation
2479
2480 * macros/pedestalstudies.C
2481 - updated to the latest version of MPedCalcPedRun
2482
2483 * macros/bootcampstandardanalysis.C
2484 - updated to the latest changes in the ArrivalTime Extraction
2485
2486
2487
2488 2004/05/05: Markus Gaug
2489
2490 * mcalib/MHGausEvents.cc
2491 - removed some warning saying "Cannot create Fourier spectrum"
2492
2493 * mcalib/MCalibrationChargePix.cc
2494 - loosened the limits somewhat for calibration with the low-gain
2495 - introduced different electronic noise for inner and outer pixels
2496 (like seen in the data)
2497
2498 * mpedestal/MPedCalcPedRun.cc
2499 - fixed a small inconsistency in case that the range goes out of
2500 the high-gain samples and reaches into the low-gain samples. In
2501 that case, the last slice of the high-gain was not taken (but the
2502 window size correctly)
2503
2504 * mjobs/MJExtractCalibTest.[h,cc]
2505 - included setters for the time extractor
2506
2507 * mcalib/MCalibrationChargeCalc.cc
2508 - set default of fgPheErrLimit from 4 sigma to 5.
2509
2510 * mcalib/Makefile
2511 * mcalib/CalibLinkDef.h
2512 * mcalib/MHCalibrationTestTimeCam.[h,cc]
2513 * mcalib/MHCalibrationTestTimeCam.[h,cc]
2514 - analogue to MHCalibrationTestCam, two classes to test the
2515 output of the calibration.
2516
2517 * mcalib/MHCalibrationCam.cc
2518 - in InitHists, exclude only pixels with kUnsuitableRun, instead of
2519 all (IsBad())
2520
2521 * msignal/Makefile
2522 * msignal/SignalLinkDef.h
2523 * msignal/MExtractTimeFastSpline.[h,cc]
2524 - new fast spline extractor for the equally spaced time slices.
2525 Searches for the position of the half maximum between maximum and
2526 pedestal. About 6 times faster than MArrivalTimeCalc
2527
2528 * mjobs/MJCalibration.cc
2529 - changed names of the MHCameras to contain run name
2530
2531
2532
2533 2004/05/04: Raquel de los Reyes
2534
2535 * mbase/MRunIter.[h,cc]
2536 - Added a flag and a set function to read .raw files.
2537 The default option is set to read .root files.
2538
2539
2540
2541 2004/05/04: Javier Rico
2542
2543 * mcalib/MCalibrate.cc
2544 - when calibrating using kNONE, weight by the pixel area
2545
2546
2547
2548 2004/05/04: Thomas Bretz
2549
2550 * macros/MagicHillas.C, macros/comprob.C, macros/derotatedc.C,
2551 macros/dohtml.C, macros/evtrate.C, macros/merpp.C,
2552 macros/pixfirerate.C, macros/pixsatrate.C, macros/plot.C,
2553 macros/plot2.C, macros/pointing.C, macros/readMagic.C,
2554 macros/rootlogon.C, macros/runbook.C, macros/sectorvstime.C,
2555 macros/star.C, macros/sumcurrents.C, macros/tar.C,
2556 macros/testenv.C, macros/weights.C:
2557 - updated documentation
2558
2559 * mastro/MAstroCamera.[h,cc]:
2560 - added member function to read MC .def files for mirror geometry
2561 - added GetDiffZdAz
2562
2563 * mastro/MObservatory.[h,cc]:
2564 - added Copy-member function
2565
2566 * mbase/MLog.[h,cc]:
2567 - updated handling of mutices
2568 - added a new mutex to lock the stream
2569
2570 * mhist/MHCamera.[h,cc]:
2571 - added functionality to linear deform the camera display
2572 (to correct for abberation)
2573
2574 * mtools/MFFT.cc:
2575 - added more documentation
2576
2577 * mbase/MTime.[h,cc]:
2578 - renamed overloaded Set-function to SetMjd. There were some
2579 trouble with the interpreter and the new naming is more
2580 intuitive.
2581
2582
2583
2584 2004/05/04: Markus Gaug
2585
2586 * mcalib/MHCalibrationChargeBlindPix.cc
2587 - intialized the 2 vectors differently, now they don't give
2588 warnings any more.
2589
2590 * msignal/MExtractor.cc
2591 * msignal/MExtractFixedWindow.cc
2592 - put one initialization to 0 into the MExtractor
2593
2594 * mastro/MAstroCatalog.h
2595 - make AlignCoordinates() protected, in order to compile
2596
2597 * mcalib/MHGausEvents.cc
2598 - took out fEvents(0) and fHGausHist() from constructor
2599
2600 * msignal/MExtractor.cc
2601 * msignal/MExtractPINDiode.cc
2602 - fixed StreamPrimitive
2603
2604 * msignal/MExtractBlindPixel.[h,cc]
2605 - deriving from MExtractor, possibility to filter NSB events
2606
2607
2608
2609 2004/05/03: Thomas Bretz
2610
2611 * mbase/MRunIter.cc:
2612 - AddRuns(char*) added some const-qualifiers
2613 - replaced deprecated if-else-if by continue- and return-
2614 constructions
2615
2616
2617
2618 2004/05/03: Javier Lopez
2619
2620 * mbadpixels/MBadPixelsPix.[h,cc]
2621 - put another enum for hardware malfunctionning. Started to be
2622 filled with kHVNotNominal
2623
2624
2625
2626 2004/05/03: Markus Gaug
2627
2628 * mcalib/MHCalibrationBlindPix.[h,cc]
2629 - removed a "->" behind the comment
2630 - Create a TVector in Draw only if the array is not zero
2631
2632 * mraw/MRawEvtPixelIter.cc
2633 - corrected bug in GetIdxMaxLoGainSamples() which looped over
2634 one slice too much
2635 end = fLoGainPos + fNumLoGainSamples + 1 replaced by:
2636 end = fLoGainPos + fNumLoGainSamples
2637
2638 * msignal/MTimeExtractor.[h,cc]
2639 * msignal/MExtractTime.[h,cc]
2640 - changed name for alphabetical display in dox
2641
2642 * mjobs/MJCalibration.[h,cc]
2643 * msignal/MExtractTimeSpline.h
2644 * msignal/MExtractTimeHighestIntegral.h
2645 - changed name of base class to MExtractTime
2646
2647 * mcalib/MCalibrationCam.[h,cc]
2648 * mcalib/MCalibrationChargeCam.[h,cc]
2649 * mcalib/MCalibrationRelTimeCam.[h,cc]
2650 - put the number of unsuitable and unreliable pixels in the base
2651 class
2652
2653 * mcalib/MCalibrationRelTimeCalc.[h,cc]
2654 - fixed a bug calculating the average time resolution
2655
2656 * mpedestals/MPedestalPix.[h,cc]
2657 - add a dedicated fValid flag in order to be able to discard pixels
2658 from outside (e.g. from MBadPixelsCam)
2659
2660 * mpedestals/MPedCalcPedRun.[h,cc]
2661 - catch badpixels cam from parameter list, if existing and set
2662 corresponding pixels to not valid in MPedestalPix
2663
2664 * mjobs/MGCamDisplays.[h,cc]
2665 * mhist/MHCamera.[h,cc]
2666 - put DrawProjection and DrawRadialProfile in MHCamera
2667
2668 * macros/dohtml.C
2669 - include directory mfit and macros calibration.C and
2670 bootcampstandardanalysis.C
2671 - take out pixvstime.C which does not exist
2672
2673 * msignal/MExtractFixedWindow.[h,cc]
2674 * msignal/MExtractSlidingWindow.[h,cc]
2675 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2676 * msignal/MExtractor.[h,cc]
2677 * msignal/MExtractPINDiode.[h,cc]
2678 * msignal/MExtractTime.[h,cc]
2679 - set number of slices not in base class, but in derived one.
2680 Like this, extractors setting their signal in other containers
2681 don't have a conflict with the ReInit() in MExtractor.
2682
2683
2684
2685 2004/05/01: Thomas Bretz
2686
2687 * macros/rootlogon.C:
2688 - ignore MARSSYS if libmars.so is found in the current path
2689
2690 * mastro/MObservatory.cc:
2691 - small change to coordinates
2692
2693 * mbase/MLog.[h,cc]:
2694 - enhanced output in case of problem with mutices
2695
2696 * mtemp/TempIncl.h, mtemp/TemlLinkDef.h:
2697 - removed everything
2698
2699 * Makefile*, */Makefile
2700 - changed all to support mtemp/mifae and similar
2701
2702
2703
2704 2004/05/01: Abelardo Moralejo
2705
2706 * mmain/MEventDisplay.cc
2707 - changed back integration range for MC to 0-14 slices to avoid
2708 confusions.
2709
2710
2711
2712 2004/05/01: Markus Gaug
2713
2714 * macros/dohtml.C
2715 - include directory mpedestal
2716
2717 * msignal/MExtractFixedWindow.[h,cc]
2718 * msignal/MExtractSlidingWindow.[h,cc]
2719 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2720 * msignal/MExtractor.[h,cc]
2721 - include the possibility to set the range for the hi-gain outside
2722 the range of MRawEvtPixelIter::GetNumHiGainSamples() and to take
2723 the "low-gain" slices instead. This is necessary for the March
2724 data!
2725
2726 * mjobs/MJCalibration.[h,cc]
2727 - accept arrival time extractors deriving from MTimeExtractor
2728
2729
2730
2731 2004/04/30: Thomas Bretz
2732
2733 * mastro/MAstroCamera.[h,cc]:
2734 - removed obsolete TList data member (use a argument in
2735 GetStarList instead)
2736
2737 * mbase/MTime.h:
2738 - added 'istream &operator<<(istream &in, MTime &t)'
2739
2740 * mbase/BaseLinkDef.h:
2741 - added new operator
2742
2743
2744
2745 2004/04/30: Daniela Dorner
2746
2747 * macros/pointing.C
2748 - implemented plot: Control Deviation vs Time
2749 - rearranged plots
2750
2751
2752
2753 2004/04/30: Markus Gaug
2754
2755 * mcalib/MCalibrationRelTimeCalc.[h,cc]
2756 - new class to treat rel. times after fits
2757
2758 * mcalib/MCalibrationChargeCalc.[h,cc]
2759 - search for outliers in the total F-Factor and set a flag in
2760 MBadPixelsPix
2761
2762 * mcalib/MCalibrationRelTimeCam.h
2763 - new TArrayIs to store number of unsuitable and unreliable pixels
2764
2765
2766 * mbadpixels/MBadPixelsPix.h
2767 - two new flags added: kDeviatingFFactor and kDeviationTimeResolution
2768
2769 * mcalib/MHCalibrationRelTimePix.[h,cc]
2770 - take out commented part of code related to re-normalization
2771
2772 * mcalib/MHCalibrationCam.[h,cc]
2773 - retrieve the used run numbers in order to store them in teh
2774 histogram titles to help transparency of the displays
2775
2776 * mcalib/MHCalibrationRelTimeCam.[h,cc]
2777 - Getter and Setter for the reference pixel
2778
2779 * mcalib/MCalibrate.cc
2780 - make error of nphot to be taken from square root of absolute
2781 number of photons instead of number of photons, otherwise
2782 NaN's are obtained
2783
2784 * msignal/MExtractPINDiode.[h,cc]
2785 - now deriving from MExtractor
2786
2787 * msignal/Makefile
2788 * msignal/SignalLinkDef.h
2789 * msignal/MExtractTimeSpline.[h,cc]
2790 * msignal/MExtractTimeHighestIntegral.[h,cc]
2791 - replacements for MArrivalTimeCalc and MArrivalTimeCalc2
2792
2793 * mjobs/MJCalibration.[h,cc]
2794 - Set time extractor by pointer
2795
2796
2797
2798 2004/04/29: Thomas Bretz
2799
2800 * mbase/MTask.cc:
2801 - fixed behaviour of GetNumExecutions. Because of a root bug
2802 Count returns a number which is to high by 1.
2803
2804
2805
2806 2004/04/29: Abelardo Moralejo
2807
2808 * mmc/MMcEvt.hxx
2809 - Added minor comment (explanation of fPassPhotCone).
2810
2811 * mmc/MMcRunHeader.[hxx,cxx]
2812 - Removed obsolete parameters fSourceOffsetTheta, fSourceOffsetPhi
2813 - Updated class version to 5.
2814
2815
2816
2817 2004/04/29: Nadia Tonello
2818
2819 * mbadpixels/MBadPixelsTreat.h
2820 - changed enums {.. BIT(1), ... BIT(2), ... BIT(3) } in {1,2,3}
2821 to have the right behaviour of the flags (and of SetProcessRMS)
2822
2823 * manalysis/MCT1PointingCorrCalc.[h,cc]
2824 - added pointing correction for 1ES1959
2825
2826
2827
2828 2004/04/29: Markus Gaug
2829
2830 * msignal/MArrivalTimePix.[h,cc]
2831 - removed flag fLoGainUsed which is not used at all
2832
2833 * msignal/MTimeExtractor.[h,cc]
2834 - new base class for arrival time extractors
2835
2836 * msignal/Makefile
2837 * msignal/SignalLinkDef.h
2838 * msignal/MExtractTimeSpline.[h,cc]
2839 - replacement of MArrivalTimeCalc, derived from MTimeExtractor
2840
2841
2842 * msignal/MExtractor.h
2843 - make SetRange virtual
2844 - check for range w.r.t. ranges given in the run header in ReInit
2845
2846 * msignal/MExtractFixedWindow.[h,cc]
2847 * msignal/MExtractSlidingWindow.[h,cc]
2848 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2849 - overload the SetRange() function in order to do the necessary
2850 checks of the range there. Slight differences in every extractor
2851 because of the floating windows.
2852
2853
2854 * mpedestals/MPedCalcPedRun.[h,cc]
2855 - add the possibility to set ranges and extraction windows. Default
2856 is what has always been
2857
2858
2859 * mjobs/MJPedestals.[h,cc]
2860 - add the possibility to set a signal extractor which gives the
2861 extraction ranges to MPedCalcPedRun
2862 - derive from MHCamDisplays
2863
2864 * mcalib/MCalibrationChargeCam.cc
2865 - updated the Print() a little
2866
2867
2868 2004/04/29: Javier Rico
2869
2870 * mbase/MRunIter.cc
2871 - Remove AddRuns(const char*,const char*) dependence on length of
2872 first character chain
2873
2874
2875 2004/04/28: Javier Rico
2876
2877 * mbase/MRunIter.[h,cc]
2878 - include function to read runs specified in a character chain
2879 with the format, e.g., run1,run2-run3,run4-run5,...
2880
2881
2882
2883 2004/04/28: Abelardo Moralejo
2884
2885 * macros/starmc.C
2886 - adapted to change in MC calibration: replaced
2887 MMcCalibrationCalc::GetHist by GetHistADC2PhotEl and
2888 GetHistPhot2PhotEl.
2889
2890
2891
2892 2004/04/28: Markus Gaug
2893
2894 * mjobs/MGCamDisplays.cc
2895 * mjobs/MJCalibration.cc
2896 - introduced new "fit" flag in DrawProjection allowing to draw
2897 two separate pad with the (fitted) histograms for inner and
2898 outer pixels. This is displayed by MJCalibration if the
2899 kNormalDisplay option is chosen (default).
2900
2901 * mjobs/MJCalibration.h
2902 - took out the const of GetBadPixels() in order to allow compilation
2903 of macros/bootcampstandardanalysis.C. This will change again soon
2904 when mjobs/MJExtraction is updated and used there.
2905
2906 * msignal/MArrivalTimeCalc.[h,cc]
2907 - remove the ReInit() which calls to an MGeomCam which is later not
2908 used
2909
2910 * macros/calibrate_data.C
2911 - fixed a bug in loop 3 taking the default QE Cam instead of the
2912 one filled by MJCalibration
2913
2914 * msignal/MExtractor.[h,cc]
2915 - new base class for signal extractors
2916
2917 * msignal/Makefile
2918 * msignal/SignalLinkDef.h
2919 * msignal/MExtractFixedWindow.[h,cc]
2920 * msignal/MExtractSlidindWindow.[h,cc]
2921 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2922 - replacements for MExtractSignal, MExtractSignal2, MExtractSignal3
2923
2924 * macros/calibration.C
2925 * macros/calibrate_data.C
2926 * macros/pedphotcalc.C
2927 * macros/bootcampstandardanalysis.C
2928 - adapted to new extractors
2929
2930 * mbadpixels/MBadPixelsPix.h
2931 - set back the old definition of IsOK(), namely no information
2932 available
2933
2934
2935
2936 2004/04/27: Raquel de los Reyes
2937
2938 * mhvstime/MHVsTime.cc
2939 - added a line in the Fill function to avoid empty time events.
2940
2941
2942
2943 2004/04/27: Abelardo Moralejo
2944
2945 * mcalib/MMcCalibrationCalc.[h,cc]
2946 - added histogram which stores the conversion of photons before
2947 the plexiglas to photoelectrons hitting first dynode.
2948
2949 * macros/mccalibrate.C
2950 - added MPointingPosCalc to the tasklist to create and fill an
2951 MPointingPos object, and later write it to the Events tree of
2952 the calibrated MC files. Added some comments and simplified
2953 some lines. One more histogram from MMcCalibrationCalc (see
2954 above) is now written to the output.
2955
2956 * macros/starmc2.C
2957 - added the writing of MPointingPos to output star file.
2958
2959
2960
2961 2004/04/27: Markus Gaug
2962
2963 * mjobs/MJCalibration.[h,cc]
2964 - put the three camera drawing facilities into a separate base
2965 class MGCamDisplays
2966
2967 * mjobs/MGCamDisplays.[h,cc]
2968 * mjobs/Makefile
2969 * mjobs/JobsLinkDef.h
2970 - camera drawing facilities: CamDraw, DrawProjection and
2971 DrawRadialProfile, used by all jobs
2972
2973 * mjobs/MJExtractCalibTest.[h,cc]
2974 * mjobs/Makefile
2975 * mjobs/MJobsLinkDef.h
2976 - new class to test the calibration results
2977
2978 * mcalib/MCalibrationChargeCalc.cc
2979 - set unsuitable pixels to excluded in MCalibrationChargePix, which
2980 will not display them in the status display
2981
2982 * mjobs/MJCalibration.cc
2983 - take out display of previously excluded pixels
2984
2985 * mbadpixels/MBadPixelsCam.cc
2986 - set val to 1 in case that GetPixelContent is true, before display
2987 was not correct
2988
2989 * macros/calibration.C
2990 - added the test class MJExtractCalibTest
2991
2992
2993
2994 2004/04/27: Abelardo Moralejo
2995
2996 * mhistmc/MHMcCollectionArea.[h,cc]
2997 - Added fMCAreaRadius and setter to allow changing the radius of
2998 the circular area in which MC events are produced. Useful for
2999 instance for stereo configuration studies. By default it is 300 m
3000 as was assumed before.
3001
3002
3003
3004 2004/04/26: Markus Gaug
3005
3006 * mcalib/MHCalibrationTestPix.[h,cc]
3007 * mcalib/MHCalibrationTestCam.[h,cc]
3008 * mcalib/Makefile
3009 * mcalib/CalibLinkDef.h
3010 - two new histogram classes to perform claibraion checks, will be
3011 especially useful for the data-check.
3012
3013 * mcalib/MCalibrationQEPix.cc
3014 - found a bug in the setting of validity flags of colours. This
3015 made the QE used for calibration uncorrect by about a factor 1.5
3016 for the outer pixels if only one colour is used for calibration.
3017
3018 * mjobs/MJCalibration.[h,cc]
3019 - moved colour finder from the macros into this class with the
3020 function FindColor()
3021 - had to add ~MJCalibration() {} because otherwise, I get a
3022 segmentation violation in the destructor, the debugger says in
3023 some TString. Maybe it's because of the GetDescriptor() in
3024 ~MParContainer() ?
3025
3026 * macros/calibration.C
3027 * macros/calibrate_data.C
3028 * macros/pedphotcalc.C
3029 * macros/bootcampstandardanalysis.C
3030 - removed function FindColor()
3031
3032 * mcalib/MCalibrationCam.h
3033 - make Init() and InitSize() virtual
3034
3035 * mcalib/MCalibrationChargeCam.[h,cc]
3036 - introduce two TArrayI's for the number of uncalibrated and
3037 unreliable pixels.
3038
3039 * mcalib/MCalibrationChargeCalc.[h,cc]
3040 - calculate and store the above numbers.
3041
3042 * mbadpixels/MBadPixelsPix.[h,cc]
3043 * mbadpixels/MBadPixelsCam.cc
3044 - removed bits: kHiGainNotCalibrated and kLoGainNotCalibrated
3045 - added bits: kDeviatingFFactor, kConversionHiLoNotValid
3046 - removed functions: IsCalibrationResultOK()
3047 and IsCalibrationSignalOK()
3048 - changed function IsOK() such that it returns false only if
3049 the pixels is not suitable (run or evt)
3050
3051 * mcalib/MCalibrate.cc
3052 * mcalib/MCalibrateRelTime.cc
3053 - exchanged query for IsCalibrationResultOK() to
3054 IsUnsuitableRun(MBadPixelsPix::kUnsuitableRun). This includes
3055 now the oscillating pixels (which are sometimes many!!)
3056
3057 * mcalib/MHCalibrationRelTimePix.cc
3058 - commented re-normalization to ns in Renorm()
3059 - introduced Getter to fFADCSliceWidth
3060
3061 * mcalib/MHCalibrationRelTimeCam.cc
3062 - renorm to ns in GetPixelsContent()
3063 --> now, calibration in MCalibrateRelTimes is consistent
3064
3065
3066
3067 2004/04/26: Abelardo Moralejo
3068
3069 * manalysis/MMcCalibrationUpdate.cc
3070 - changed from 1 to 10 the "dummy" value of conversion high to low
3071 gain for old camera 0.6 files. Usually these files have no low
3072 gain at all, but there was a patched version of the program
3073 which did have low gain (with a gain 10 lower than hg).
3074
3075
3076
3077 2004/04/25: Abelardo Moralejo
3078
3079 * mbadpixels/MBadPixelsTreat.cc
3080 - Change in line 204: if ((*fBadPixels)[i].IsBad()) by
3081 if ((*fBadPixels)[j].IsBad()) The way it was done, it never
3082 worked, because the check on whether the neighbour pixels
3083 were OK was performed on the same pixel to be treated (i), which
3084 is obviously not OK. The same problem fixed in the interpolation
3085 of pedestals. Amazingly, this error would have shown up in any
3086 test of the class.... I assume it must have been commited
3087 completely untested.
3088
3089 - In InterpolateSignal: moved division of summed charge over
3090 number of pixels : put it after the check of the number of
3091 valid neighbours to avoid division by 0.
3092
3093
3094
3095 2004/04/23: Markus Gaug
3096
3097 * mcalib/MHCalibrationCam.cc
3098 - fixed a bug in the ReInit() for the number of average events in
3099 each area index and sector
3100
3101
3102 2004/04/23: Thomas Bretz
3103
3104 * */Makefile:
3105 - added some more mpedestal
3106
3107 * mreport/MReportRun.cc:
3108 - changed to work with the latest version of report-files
3109 --> This will make it incompatible with older report files
3110 (for this use older Mars versions for merpping)
3111
3112 * mbase/MStatusDisplay.[h,cc]:
3113 - added combo-box to surf through tabs in MARS-tab
3114
3115
3116
3117 2004/04/22: Nadia Tonello
3118
3119 * mcalib/MCalibrateData.cc
3120 - changed request for MBadPixelsPix::IsCalibrationResultOK() for
3121 MBadPixelsPix::IsUnsuitable(MBadPixelsPix::kUnsuitableRun)
3122
3123
3124
3125 2004/04/22: Thomas Bretz
3126
3127 * mhist/MHCamera.[h,cc]:
3128 - implemented SetUsed
3129
3130 * merpp.cc:
3131 - added "-ff" and interleave mode - both not execcively tested yet
3132
3133 * mhbase/MFillH.cc:
3134 - added a missing 'endl'
3135
3136 * mraw/MRawCrateData.[h,cc], mraw/MRawEvtData.[h,cc],
3137 mraw/MRawEvtHeader.[h,cc]
3138 - added SkipEvt (the number of skipped bytes is untested)
3139
3140 * mraw/MRawEvtHeader.[h,cc]
3141 - return kCONTINUE if time is invalid
3142
3143 * mraw/MRawFileRead.[h,cc]:
3144 - implemented AddFile feature - first draft!
3145 - added feature to skip events
3146
3147 * mraw/MRawFileWrite.h:
3148 - changed default compression level corresponding to merpp to 2
3149
3150 * mraw/MRawRead.[h,cc]:
3151 - added fForceMode flag to be able to suppress event errors
3152
3153 * mbadpixels/MBadPixelsTreat.[h,cc]:
3154 - changes such that the pedestal interpolation is now done
3155 only in ReInit. If you need the old behaviour call
3156 SetProcessRMS()
3157
3158 Another step towards less mess:
3159
3160 * MMcPedestalCopy.[h,cc], MMcPedestalNSBAdd.[h,cc],
3161 MPedPhotCalc.[h,cc], MPedPhotCam.[h,cc], MPedPhotPix.[h,cc],
3162 MPedCalcPedRun.[h,cc], MPedestalCam.[h,cc],
3163 MPedestalPix.[h,cc]:
3164 - moved from manalysis to mpedestal
3165
3166 * mpedestal/Makefile, mpedestal/PedestalLinkDef.h,
3167 mpedestal/PedestalIncl.h:
3168 - added
3169
3170 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
3171 manalysis/AnalysisIncl.h:
3172 - removed files above
3173
3174 * mbadpixels/Makefile:
3175 - added mpedestals
3176
3177 * Makefile:
3178 - added mpedestals
3179
3180
3181 2004/04/22: Antonio Stamerra
3182
3183 * mmain/MEventDisplay.cc
3184 - Added new tab "Trigger" adding a new MHEvent (evt9),
3185 filled through the MMcTriggerLvl2 container.
3186 A new MFillH task for evt9 and MMcTriggerLvl2Calc task
3187 have been added.
3188
3189 * mhist/MHEvent.[h,cc]
3190 - Added new event type kEvtTrigPix
3191
3192 * manalysis/MMcTriggerLvl2.[h,cc]
3193 - The class now inherits from MCamEvent
3194 - Added the methods GetPixelContent and DrawPixelContent (from MCamEvent)
3195 - Added the method IsPixelInTrigger that returns kTRUE if a pixels
3196 is in the trigger region
3197
3198 * manalysis/MMcTriggerLvl2Calc.[h,cc]
3199 - Added the methods CheckRunType and ReInit to check if the file is MC.
3200
3201 * mhistmc/Makefile
3202 - Added the include for mgui
3203
3204
3205 2004/04/22: Markus Gaug
3206
3207 * mcalib/MCalibrate.[h,cc]
3208 - introduced flat-fielding of charges for the muon calibration,
3209 accessible with SetCalibrationMode(kFlatCharge)
3210
3211 * manalysis/MPedCalcPedRun.cc
3212 - added a SetReadyToSave() at the end of PostProcess
3213
3214 * mjobs/Makefile
3215 - added include of mraw
3216
3217 * mjobs/MJCalibration.cc
3218 - added MRawFileRead for option SetDataCheck()
3219
3220 * mjobs/MJPedestal.cc
3221 - added MRawFileRead for option SetDataCheck()
3222
3223
3224 2004/04/21: Thomas Bretz
3225
3226 * mbase/MTask.cc, mbase/MTaskList.cc:
3227 - let MTask in list fTaskProcess to be used as a counter
3228
3229 * mdata/MDataChain.[h,cc]:
3230 - added some treatments for combinations of +/- signs
3231
3232 * mfbase/MFilterList.[h,cc]:
3233 - added a new constructor to simplyfy filter-inversions
3234
3235 * mfileio/MReadReports.cc:
3236 - added comment
3237
3238 * mhbase/MBinning.[h,cc]:
3239 - added new constructor to simplify calls in macros
3240
3241 * mhbase/MFillH.[h,cc]:
3242 - added fDrawOption to be used in MStatusDisplay
3243
3244 * mhist/MHFalseSource.cc:
3245 - added comment
3246
3247
3248
3249 2004/04/20: Thomas Bretz
3250
3251 * macros/derotatedc.C
3252 - added tutorial macro plotting derotated dc currents
3253
3254 * mhist/MHCamEventRot.[h,cc]:
3255 - added histogram to be filled with derotated MCamEvents
3256
3257
3258
3259 2004/04/18: Abelardo Moralejo
3260
3261 * mgeom/MGeomCam.h
3262 - Update class version to 4 (necessary after M. Gaug's change
3263 of the type of member fMaxRadius.
3264
3265
3266
3267 2004/04/16: Abelardo Moralejo
3268
3269 * mcalib/MCalibrationQEPix.[h,cc]
3270 - Added fAverageQE. Same role as gkDefaultAverageQE, but can be
3271 changed via SetAverageQE. Made public GetAverageQE and
3272 GetAverageQERelVar (this changes needed for MC).
3273
3274 * mcalib/MMcCalibrationCalc.[h,cc]
3275 * manalysis/MMcCalibrationUpdate.[h,cc]
3276 - Adapted to M. Gaug's changes in calibration classes. Behaviour
3277 has been tested to be the same as before those changes. Now the
3278 conversion factor from ADC counts to photoelectrons, and the
3279 average QE (photons->photoelectrons) are calculated independently
3280 (and later combined by MCalibrate to obtain the conversion
3281 ADC->photons).
3282
3283 * mmain/MEventDisplay.cc, macros/mccalibrate.C, starmc.C
3284 - Added call to MExtractSignal::SetSaturationLimit(240) Affects
3285 only MC display. This was necessary because if electronic noise
3286 is simulated in the FADC, sometimes saturated slices look not
3287 saturated due to negative fluctuations, so it is better to set
3288 the saturation limit at a safe value (240 ADC counts). Changed
3289 signal integration range (only for MC), now from slices 5 to 10.
3290
3291 * msignal/MExtractSignal3.[h,cc]
3292 - Changed name of function SetRange for the more adecquate
3293 "SetWindows". No change in behaviour of the function.
3294
3295
3296
3297 2004/04/16: Markus Gaug
3298
3299 * msignal/MExtractSignal.cc
3300 - commited proposed larger default window from fgLast = 10 to
3301 fgLast = 14, because in March the pulses have moved to later
3302 arrival times.
3303 - removed some inconsistency with slice numbering in FindSignal()
3304 from pixel.GetHiGainSamples()+fHiGainFirst-1 to
3305 pixel.GetHiGainSamples()+fHiGainFirst and also for the low gain
3306
3307 * msignal/MExtractSignal2.cc
3308 - committed the proposed smaller window egdes from fgFirst=0 to
3309 fgFirst = 3, because in March some of the high-gain pulses reach
3310 into the "low-gain samples" and mislead thus sliding window to
3311 be maximized on the tail of the high-gain pulse.
3312
3313 * mcalib/MHPedestalPix.cc
3314 - fixed a bug which made normalization to values per slice not happen
3315
3316 * macros/pedestalstudies.C
3317 - fixed and documented
3318
3319
3320
3321 2004/04/15: Markus Gaug
3322
3323 * macros/calibration.C
3324 - added a function FindColor() to extract the colour by filename,
3325 works if there is indeed a colour or if the run nubmer is smaller
3326 than 20000 -> take ct1
3327
3328 * macros/bootcampstandardanalysis.C
3329 * macros/pedphotcalc.C
3330 * macros/calibrate_data.C
3331 - updated the macro to the cvs-standard used at the Udine bootcamp
3332
3333 * mcalib/MCalibrateRelTimes.[h,cc]
3334 * mcalib/Makefile
3335 * mcalib/CalibLinkDef.h
3336 - new class to calibrate the relative times
3337
3338 * manalysis/MGeomApply.cc
3339 - added MArrivalTime::Init()
3340
3341 * msignal/MArrivalTime.[h,cc]
3342 - added array fDataErr
3343
3344 * macros/rootlogon.C
3345 - added directories mbadpixels and mjobs
3346
3347 * mcalib/MCalibrationQEPix.cc
3348 - set the fAvNorm variables to 1 in Clean()
3349
3350 * manalysis/MPedPhotCalc.[h,cc]
3351 - included possibility to use an MBadPixelsCam
3352
3353
3354
3355 2004/04/14: Thomas Bretz
3356
3357 * manalysis/MCerPhotEvt.[h,cc]:
3358 - fixed a bug which caused a missing last pixel (in most cases
3359 Index 576)
3360
3361 * manalysis/MCerPhotPix.cc:
3362 - fixed output in Print
3363
3364 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
3365 - added missing SetCalibrationMethod
3366
3367 * mbadpixels/MBadPixelsCam.[h,cc]:
3368 - added copy constructor
3369
3370 * mbadpixels/MBadPixelsMerge.cc:
3371 - added comments
3372
3373 * mraw/MRawRunHeader.[h,cc]:
3374 - added new run-type (kRTPointRun=7)
3375
3376 * mmain/MEventDisplay.cc:
3377 - fixed the broken cleaning levels
3378
3379
3380
3381 2004/04/14: Markus Gaug
3382
3383 * mcalib/MCalibrationQEPix.cc
3384 - found a bug in the calculation of the error, fixed
3385
3386 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
3387 - replaced SetCalibrationMethod by SetCalibrationMode
3388
3389 * htmldoc/images/CalibClasses.gif
3390 * htmldoc/images/RelTimeClasses.gif
3391 - two schemes used in the class descriptions
3392
3393 * mcalib/MHCalibrationCam.[h,cc]
3394 - included function GetAverageAreas() and GetAverageSectors() like
3395 in MCalibrationCam
3396
3397 * mjobs/MJCalibration.[h,cc]
3398 - included calibration of rel.Times, to be chosen with a flag
3399 RelTimeCalibration()
3400 - signal extractor and arrival time extractor can be chosen by
3401 flags as well (see Class description)
3402
3403
3404 * mbadpixels/MBadPixelsCam.cc
3405 - add two new types in GetPixelContent, add documentation of
3406 GetPixelContent
3407
3408 * msignal/MArrivalTimeCalc2.cc
3409 - commented the warning for pixels with lowgain saturation
3410
3411
3412
3413 2004/04/13: Markus Gaug
3414
3415 * macros/dohtml.C
3416 - included directory mbadpixels
3417
3418 * mcalib/MCalibrationPix.[h,cc]
3419 - add functions GetHiLoMeansDivided(), GetHiLoSigmasDivided() and
3420 errors
3421
3422 * mcalib/MCalibrationChargeCam.[h,cc]
3423 - removed hi-vs.Lo histograms (come into a separate MIntensityCam)
3424 - updated GetPixelContents
3425 - updated class documentation
3426
3427 * mgeom/MGeomMirror.h
3428 - include <TVector3.h>, otherwise it does not compile on my machine
3429
3430 * mjobs/MJPedestals.cc
3431 * mjobs/MJCalibration.cc
3432 - replaced MBadPixelsMerge by MParList.AddToList(fBadPixels) until
3433 bug in MBadPixelsMerge is resolved (see bugtracker).
3434
3435 * mcalib/MHCalibrationChargePINDiode.cc
3436 - return in Draw() if histogram is empty (otherwise segm. violation
3437 in eventloop
3438
3439 * msignal/MExtractedSignalCam.cc
3440 - intialize variables by default to 0.
3441
3442 * mcalib/MHCalibrationChargeCam.[h,cc]
3443 - pointer to fSig is not stored, somehow, when running MJCalibration
3444 Don't know why. Removed and stored some variables instead
3445
3446 * mjobs/MJCalibration.[h,cc]
3447 - updated documentation, updated QE Cam
3448 - set the pulser colour (now obligatory)
3449 - set the possibility to choose different displays
3450
3451 * mcalib/MCalibrationChargeCalc.cc
3452 - set the pulser colour (now obligatory)
3453
3454 * mcalib/MCalibrationChargePix.[h,cc]
3455 - put GetRSigmaPerCharge into this class
3456
3457
3458
3459 2004/04/13: Thomas Bretz
3460
3461 * mastro/MAstroCamera.cc, mastro/MAstroCatalog.[h,cc]:
3462 - enhanced comments
3463 - added some new features
3464
3465 * mbase/MAGIC.h:
3466 - removed some empty lines
3467
3468 * mfileio/MWriteRootFile.cc:
3469 - fixed a compiler warning
3470
3471 * mgeom/MGeomCorsikaCT.h:
3472 - removed obsolete include of TArrayF
3473
3474 * mgeom/MGeomMirror.[h,cc]:
3475 - replaced fReflector by *fReflector
3476
3477 * mmain/MGDisplayAdc.cc:
3478 - fixed a bug which caused the wrong histogram entry to be
3479 displayed
3480
3481
3482
3483 2004/04/10: Markus Gaug
3484
3485 * macros/dohtml.C
3486 - included directory mjobs
3487
3488 * mjobs/MJCalibration.[h,cc]
3489 - added and updated documentation (not yet ready)
3490
3491 * htmldoc/images/CalibClasses.gif
3492 - scheme of the calibration classes, used for documentation in
3493 MJCalibration.cc
3494
3495
3496
3497 2004/04/10: Thomas Bretz
3498
3499 * mastro/MAstroCatalog.[h,cc], mastro/MAstroCamera.[h,cc]:
3500 - added comments
3501
3502 * macros/starfield.C:
3503 - added
3504
3505 * mastro/Makefile, mastro/AstroLinkDef.h
3506 - added MAstroCamera
3507
3508
3509
3510 2004/04/09: Markus Gaug
3511
3512 * mcalib/MHCalibrationChargePINDiode.[h,cc]
3513 * mcalib/MHCalibrationChargeCam.[h,cc]
3514 * mcalib/MHCalibrationChargeCalc.[h,cc]
3515 - put abs. time consistency check from MCalibrationChargeCalc into
3516 MHCalibrationChargePINDiode and MHCalibrationChargeCam
3517
3518 * mcalib/MHCalibrationCam.[h,cc]
3519 * mcalib/MHCalibrationChargeCalc.[h,cc]
3520 - number of used FADC slices also stored in MHCalibrationCam,
3521 MHCalibrationChargeCalc needs no pointer to the signal extractors
3522 any more -> removed
3523
3524 * mcalib/MCalibrationChargePINDiode.[h,cc]
3525 * mcalib/MCalibrationChargeBlindPix.[h,cc]
3526 * mcalib/MCalibrationCam.[h,cc]
3527 - put a default pulser color kNONE
3528
3529 * manalysis/MPedestalCam.[h,cc]
3530 * manalysis/MPedCalcPedRun.[h,cc]
3531 * manalysis/MGeomApply.cc
3532 - added average pixels in the way like it is done in MCalibrationCam
3533
3534
3535
3536 2004/04/08: Thomas Bretz
3537
3538 * mfbase/MF.cc:
3539 - optimized output
3540
3541 * mfbase/MFilterList.cc:
3542 - added some comments
3543
3544 * mfileio/MReadMarsFile.[h,cc], mfileio/MReadTree.[h,cc]:
3545 - added SortFiled-option -- RAQUEL, this is for you!
3546
3547 * mfileio/MWriteRootFile.cc:
3548 - class AddSerialNumber in AddContainer
3549
3550 * mhist/MHFalseSource.[h,cc]:
3551 - optimized setting of hist maximum
3552 - added more source dependant cuts
3553 - changed display layout
3554 - scale number of entries to correct for different acceptance
3555 (not perfect, but the best I can currently do)
3556
3557 * mimage/MHHillasExt.[h,cc]:
3558 - added new histogram for fMaxDist
3559
3560 * mimage/MHNewImagePar.[h,cc]:
3561 - added new histograms for Used/CoreArea
3562
3563 * mimage/MHillasCalc.cc:
3564 - optimized output
3565
3566 * mimage/MHillasExt.cc:
3567 - fMaxDist got a sign
3568
3569 * mimage/MNewImagePar.[h,cc]:
3570 - enhanced comments
3571 - added new Print() member function
3572
3573 * macros/readCT1.C, macros/readMagic.C, mmain/MEventDisplay.cc:
3574 - forward geomcam to newimgepar.Print()
3575
3576
3577
3578 2004/04/08: Markus Gaug
3579
3580 * mcalib/MCalibrationChargeCalc.[h,cc]
3581 * mcalib/MCalibrationChargeCam.[h,cc]
3582 * mcalib/MCalibrationChargePix.[h,cc]
3583 * mcalib/MCalibrationChargeBlindPix.[h,cc]
3584 * mcalib/MCalibrationChargePINDiode.[h,cc]
3585 - put calculation of photon fluxes with the three methods into
3586 MCalibrationChargeCalc
3587 - reorganized calculations in a better readable way (hopefully!)
3588
3589 * mbase/MAGIC.h
3590 * mcalib/MCalibrationCam.[h,cc]
3591 * mcalib/MCalibrationQECam.[h,cc]
3592 * mcalib/MCalibrationQEPix.[h,cc]
3593 - put PulserColor_t away from MAGIC.h into MCalibrationCam
3594 - full implementation of the QE-calibration from MCalibrationQEPix
3595
3596 * msignal/MExtractBlindPixel.cc
3597 - removed warning about low-gain saturation of Blind pixel
3598
3599 * mcalib/MCalibrate.[h,cc]
3600 * mcalib/MCalibrateData.[h,cc]
3601 * mcalib/MMcCalibrationCalc.[h,cc]
3602 * manalysis/MMcCalibrationUpdate.[h,cc]
3603 - conversion factors now separated into FADC2phe and then into
3604 call to average Quantum efficiency.
3605
3606
3607 2004/04/07: Markus Gaug
3608
3609 * mcalib/MHGausEvents.[h,cc]
3610 - added fBlackout events
3611
3612
3613
3614 2004/04/06: Thomas Bretz
3615
3616 * mcalib/MCalibrationCam.[h,cc]:
3617 - simplified call to initialization by new function Init()
3618
3619 * mcalib/MH*.cc:
3620 - fixed some warnings (comparision between signed and unsigned)
3621
3622 * manalysis/MGeomApply.cc:
3623 - use new Init-funtion of MCalibrationCam
3624
3625 * mastro/MAstro.cc:
3626 - some fixes to the conversion functions
3627
3628 * mastro/MAstroCamera.[h,cc]:
3629 - added comments
3630 - changed argument type of AddPrimitives
3631
3632 * mastro/MAstroCatalog.[h,cc]:
3633 - many changes to make it possible to overlay the
3634 catalog on top of a 2D histogram
3635
3636 * mbase/MEvtLoop.cc:
3637 - fixed estimation of run-time
3638
3639 * mbase/MMath.[h,cc]:
3640 - added member functions for signed significances
3641
3642 * mbase/MParContainer.cc:
3643 - changed GetterMethod() to support double reference data mebers
3644
3645 * mbase/MStatusDisplay.cc:
3646 - removed some obsolete debug outputs
3647
3648 * mbase/MTask.[h,cc]:
3649 - removed fNumExecutions, fStopwatch already counts the calls
3650 - slight chagnes to output of PrintStatistics
3651
3652 * mbase/MTaskList.[h,cc]:
3653 - slight chagnes to output of PrintStatistics
3654
3655 * mbase/MTime.cc:
3656 - removed +TwoPi from GetGmst
3657
3658 * mcamera/MCameraAUX.h, mcamera/MCameraHV.h, mcamera/MCameraLV.h,
3659 mcamera/MCameraLid.h, mcamera/MCameraLids.h,
3660 mcamera/MCameraPowerSupply.h:
3661 - added missing Getter functions
3662
3663 * mcamera/MCameraHV.h:
3664 - removed obsolete data-meber fMean
3665
3666 * mdata/DataLinkDef.h:
3667 - added MDataFormula
3668
3669 * mdata/MDataChain.cc, mdata/Makefile:
3670 - enhanced dosumentation
3671 - implemented use of multi argument functions
3672 - added ^-operator
3673
3674 * mdata/MDataList.[h,cc]:
3675 - added ^-operator
3676 - enhanced IsValid
3677
3678 * mfbase/MFilterList.cc:
3679 - changed a warn-output to inf
3680
3681 * mgeom/MGeomCam.[h,cc]:
3682 - added getter returning index corresponding to XY
3683
3684 * mgeom/MGeomPix.[h,cc]:
3685 - added getter IsInside
3686
3687 * mhist/MHCamera.cc:
3688 - Return 0 in GetMean if no entries
3689
3690 * mhist/MHFalseSource.[h,cc]:
3691 - removed conversion stuff (mm/deg)
3692 - slight change to calculation of significance
3693 - added dist-cuts
3694 - added histogram showing number of entries
3695 - added display of catalog
3696
3697 * mhist/MHStarMap.cc:
3698 - added comment
3699
3700 * mimage/MHillasExt.[h,cc]:
3701 - changed class version to 3
3702 - added new data-member fMaxDist
3703
3704 * mimage/MNewImagePar.[h,cc]:
3705 - added new data member fUsedArea and fCoreArea
3706
3707 * mmc/MMcConfigRunHeader.h:
3708 - readded GetMirrors (WHY WAS IT GONE?)
3709
3710 * mpointing/MPointingPos.[h,cc]
3711 - implemented Getter to get coordinates in rad
3712
3713 * mpointing/MSrcPosCalc.[h,cc]:
3714 - fixed direction of rotation
3715 - for the moment do use fTime
3716
3717
3718
3719 2004/04/06: Markus Gaug
3720
3721 * mcalib/MCalibrationChargePix.[h,cc]
3722 - change names of the GetLoGain*() functions to
3723 GetConvertedLoGain*() for better clarity
3724
3725 * mcalib/MCalibrationChargeCam.[h,cc]
3726 - updated and enlarged documentation
3727
3728 * mcalib/MHCalibrationChargeCam.cc
3729 * mcalib/MHCalibrationRelTimeCam.cc
3730 - set the arrays by use of memset
3731 - initialize TObjArrays with the Init-Function
3732
3733
3734 2004/04/05: Markus Gaug
3735
3736 * msignal/MExtractedSignalPINDiode.h
3737 - new function GetLastUsedSlice()
3738
3739 * mcalib/MCalibrationChargeCalc.[h,cc],
3740 * mcalib/MCalibrationChargeCam.cc:
3741 - holds also pointers to MExtractedSignalPINDiode and
3742 MExtractedSignalBlindPixel and does the checks inside the task
3743 (instead of inside the containers)
3744
3745 * mcalib/MCalibrationChargeBlindPix.[h,cc],
3746 * mcalib/MCalibrationChargePINDiode.[h,cc]:
3747 - updated and enlarged documentation
3748
3749 * mcalib/MHCalibrationChargePINDiode.cc
3750 * mcalib/MHCalibrationChargeCam.[h,cc]
3751 - rename Setter for fMeanVar from SetMeanErr() to SetMeanVar()
3752 - rename arrays of fAverageSigmaErr to AverageSigmaVar
3753
3754 * mcalib/MCalibrationPix.[h,cc]
3755 * mcalib/MCalibrationChargePix.[h,cc]
3756 * mcalib/MCalibrationChargeBlindPix.[h,cc]
3757 * mcalib/MCalibrationChargePINDiode.[h,cc]
3758 - add Getters to the relative variance
3759
3760 * mcalib/MHGausEvents.[h,cc]
3761 * mcalib/MCalibrationPix.[h,cc]
3762 * mcalib/MHCalibrationCam.cc
3763 - add to Pickup also Blackout events
3764
3765
3766 2004/04/05: Nadia Tonello
3767
3768 * mbadpixels/MBadPixelsTreat.cc
3769 - In Unmap(): replaced SetPixelUnused with SetPixelUnmapped
3770
3771
3772
3773 2004/04/02: Markus Gaug
3774
3775 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.[h,cc],
3776 mcalib/MCalibrationQEPix.[h,cc], mcalib/MCalibrationQECam.[h,cc],
3777 mcalib/MCalibrationRelTimeCam.[h,cc],
3778 mcalib/MCalibrationRelTimePix.[h,cc]:
3779 - updated and enlarged documentation
3780
3781 * mcalib/MHGausEvents.[h,cc], mcalib/MHPedestalPix.[h,cc],
3782 mcalib/MHCalibrationChargePix.[h,cc],
3783 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
3784 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
3785 mcalib/MHCalibrationChargeBlindPix.[h,cc],
3786 mcalib/MHCalibrationChargePINDiode.[h,cc]:
3787 - put fPixId, fPickup, fPickupLimt, CountPickup(), RepeatFit() and
3788 ChangeHistId() into MHGausEvents (before in the derived classes)
3789 - put fChargeNbins, fChargeFirst, fChargeLast,
3790
3791 * mcalib/MHCalibrationRelTimePix.[h,cc]:
3792 - put fRelTimeNbins, fRelTimeFirst, fRelTimeLast together
3793 into MHGausEvents as fNbins, fFirst and fLast
3794
3795 * mcalib/MHCalibrationRelTimePix.[h,cc]:
3796 - remove Renormalization to time slices. Need to think about
3797 more direct way to implement
3798
3799 * mcalib/MHPedestalCam.[h,cc], mcalib/MHCalibrationCam.[h,cc],
3800 mcalib/MHCalibrationChargeCam.[h,cc],
3801 mcalib/MHCalibrationRelTimeCam.[h,cc]:
3802 - put most of the functionality into the base class MHCalibrationCam
3803 - derived classes overload the functions SetupHists, ReInitHists,
3804 FillHists, FinalizeHists and FinalizeBadPixels.
3805 - functions FitHiGainArrays, FitLoGainArrays, FitHiGainHists,
3806 FitLoGainHists and InitHists can be used from base class.
3807
3808 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationChargePix.[h,cc],
3809 mcalib/MCalibrationRelTimePix.[h,cc]:
3810 - put most of the functionality into the base class MCalibrationPix
3811 - other two classes derive now from MCalibrationPix
3812
3813 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationChargeCam.[h,cc]
3814 mcalib/MCalibrationRelTimeCam.[h,cc]:
3815 - put most of the functionality into the base class MCalibrationCam
3816 - other two classes derive now from MCalibrationCam
3817 - calls to MCalibration*Cam[i] now have to cast!
3818
3819 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
3820 * mcalib/MMcCalibrateCalc.cc, manalysis/MMcCalibrationUpdate.cc,
3821 * mcalib/MCalibrationChargeCalc.cc:
3822 - cast calls to MCalibration*Cam[i]
3823
3824 * manalysis/MGeomApply.cc
3825 - add initialization MCalibrationRelTimeCam
3826 - add intialization of average pixels
3827
3828
3829
3830 2004/04/02: Abelardo Moralejo
3831
3832 * msignal/MExtractSignal3.[h,cc]
3833 - added. Alternative method for signal extraction. Uses sliding
3834 window from event to event, but a common window for all pixels
3835 in an event.
3836
3837 * msignal/Makefile, SignalLinkDef.h
3838 - added MExtractSignal3.
3839
3840
3841
3842 2004/04/02: Markus Gaug
3843
3844 * mbadpixels/MBadPixelsPix.h
3845 - added kRelTimeNotFitted and kRelTimeOscillating to Calibration_t
3846 enum
3847
3848 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationPix.[h,cc],
3849 mcalib/Makefile, mcalib/CalibLinkDef.h:
3850 - two new base classes for general calibration storage containers,
3851 contain average pixel storage functionality
3852
3853 * mcalib/MCalibrationRelTimeCam.[h,cc],
3854 mcalib/MCalibrationRelTimePix.[h,cc]:
3855 - new storage container for the rel. time calibration results, derive
3856 from MCalibrationPix, MCalibrationCam
3857
3858
3859
3860 2004/04/01: Markus Gaug
3861
3862 * msignal/MArrivalTimeCalc.[h,cc]
3863 - set fSaturationLimit as a variable with default (instead of 0xff)
3864
3865 * mcalib/MHCalibrationChargeCam.[h,cc]
3866 mcalib/MCalibrationChargeCam.[h,cc]
3867 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
3868 - add average pixels per sector
3869
3870 * mcalib/MHGausEvents.[h,cc], mcalib/MHCalibrationChargePix.[h,cc],
3871 mcalib/MHCalibrationRelTimePix.[h,cc]:
3872 - moved BypassFit() function to MHGausEvents
3873
3874 * mcalib/MHCalibrationChargeCam.[h,cc]:
3875 - updated and enlarged documentation
3876 - derives now from mcalib/MHCalibrationCam
3877
3878 * mcalib/MCalibrationChargePix.[h,cc]:
3879 - removed flag kLoGainSaturation, because it is already in MBadPixelsPix
3880
3881 * mcalib/MCalibrationCam.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
3882 - new base class for all MHCalibration*Cam object, contains the average
3883 pixel functionality
3884
3885
3886
3887 2004/03/31: Markus Gaug
3888
3889 * mcalib/MHCalibrationChargeCam.[h,cc],
3890 mcalib/MCalibrationChargeCam.[h,cc],
3891 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
3892 - make the average pixel independent on camera geometry, i.e.
3893 one average pixel per MGeomPix::Aidx
3894
3895
3896
3897 2004/03/31: Abelardo Moralejo
3898
3899 * mmc/MMcConfigRunHeader.[h,cc]
3900 - updated to current version (3) in camera program. Added member
3901 fLightCollectionFactorOuter so that we can store the data on
3902 the simulatedlight collection efficiency (light guides +
3903 plexiglas +...) as a function of incidence angle for outer and
3904 inner pixels independently. Added getters for this information
3905 on light collection efficiency.
3906
3907
3908
3909 2004/03/30: Markus Gaug
3910
3911 * mcalib/MHGausEvents.[h,cc],
3912 mcalib/MHCalibrationChargePix.[h,cc],
3913 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
3914 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
3915 mcalib/MHCalibrationChargeBlindPix.[h,cc],
3916 mcalib/MHCalibrationChargePINDiode.[h,cc],
3917 mcalib/MHCalibrationRelTimeCam.[h,cc],
3918 mcalib/MHCalibrationRelTimePix.[h,cc],
3919 mcalib/MHPedestalPix.[h,cc],
3920 mcalib/MHPedestalCam.[h,cc]:
3921 - updated and enlarged documentation
3922
3923
3924
3925 2004/03/30: Abelardo Moralejo
3926
3927 * mmc/MMcFadcHeader.hxx
3928 - updated to current version (4) in camera program.
3929
3930
3931
3932 2004/03/29: Markus Gaug
3933
3934 * manalysis/MSourcePosFromStarPos.cc
3935 - replaced fabs(ival) by TMath::Abs(ival)
3936
3937 * mbadpixels/MBadPixelsPix.h
3938 - adopt treatment of UnCalibrated_t like the one in Unsuitable_t
3939
3940 * mbadpixels/MBadPixelsPix.cc
3941 - put some documentation in the header
3942
3943 * mcalib/MHCalibrationChargeCam.cc
3944 mcalib/MCalibrationChargeCam.cc
3945 mbadpixels/MBadPixelsCam.cc
3946 - adopt to new style in MBadPixelsPix.h
3947
3948 * mcalib/MCalibrationChargeCalc.[h,cc]
3949 mcalib/MCalibrationChargePix.[h,cc]
3950 - move consistency checks from Pix to Calc
3951
3952 * mcalib/MHGausEvents.[h,cc]
3953 - fixed axes for event and fourier spectrum Draw
3954
3955 * mcalib/MHCalibrationChargePix.[h,cc]
3956 mcalib/MHCalibrationChargeCam.[h,cc]
3957 - moved definition of pulser frequency to MHCalibrationChargeCam
3958
3959
3960
3961 2004/03/24: Thomas Bretz
3962
3963 * mbase/MMath.cc:
3964 - now SignificanceLiMa returns 0 in case sum==0
3965
3966
3967
3968 2004/03/23: Thomas Bretz
3969
3970 * mbase/MContinue.cc, mhbase/MH.cc:
3971 - changed a warning message to an inf-message
3972
3973 * mfileio/MReadTree.cc:
3974 - added an additional logging message when adding files to a
3975 chain successfully.
3976
3977 * mbase/MProgressBar.cc:
3978 - fixed initial size
3979
3980 * mastro/MAstro.[h,cc]:
3981 - changed the code for the rotation angle back to its original
3982 shape. The definition I tried to introduced was already
3983 correctly implemented (assuming that sin is the x-component
3984 of the vector I had it wrong in my mind twice, using
3985 atan2(y,x) everywhere I did recognize it...)
3986
3987 * mreport/MReport.cc:
3988 - fixed a bug which caused a crash when the time is not valid
3989
3990 * mhist/MHStarMap.cc, mpointing/MSrcPosCalc.cc:
3991 - fixed: v.Roatete() must be v=v.Rotate()
3992 - MHStarMap no waorks also without MSrcPosCam, MPointingPos
3993 or MObservatory (leaving out the corresponding translations)
3994
3995
3996
3997 2004/03/22: Markus Gaug
3998
3999 * mfileio/Makefile, mimage/Makefile
4000 - mpointing included
4001
4002
4003
4004 2004/03/22: Thomas Bretz
4005
4006 * mpointing/MSrcPosCalc.[h,cc], MSrcPosCam.[h,cc]:
4007 - added
4008
4009 * mastro/MAstro.[h,cc]:
4010 - added code to calculate rotationangle previously in MObservatory
4011 - changed definition of rotation angle such, that it is now
4012 180deg if Ra and Az grid is parallel
4013
4014 * mastro/MAstroCatalog.[h,cc]:
4015 - fixes and enhancements to the display (such as misscalculated
4016 number of grid lines, title display, etc)
4017 - enhancements to the output
4018 - generalized creation of grid - for further usage
4019
4020 * mastro/MAstroSky2Local.[h,cc]:
4021 - replaced calculation of rotation angle by the function in
4022 MAstro
4023
4024 * mastro/MObservatory.[h,cc]:
4025 - small changes to Print output
4026 - moved code for calculation of rotation angle to MAstro
4027
4028 * mbase/MEvtLoop.cc:
4029 - do not output number of events per second if no events processed
4030
4031 * mbase/MParList.cc:
4032 - updated some comments
4033
4034 * mfileio/MCT1ReadAscii.cc, mfileio/MCT1ReadPreProc.cc,
4035 mfileio/MReadRflFile.cc, mraw/MRawFileRead.cc,
4036 mreport/MReportFileRead.cc:
4037 - output error string if file cannot be opened
4038
4039 * mfileio/MReadTree.cc:
4040 - output name of chain which is scanned
4041
4042 * mimage/MConcentration.cc:
4043 - replaced loop by iterator
4044 - removed obsolete (unused) variables
4045
4046 * mimage/MHNewImagePar.[h,cc]:
4047 - fixed display colors
4048
4049 * mpointing/MPointingPos.[h,cc]:
4050 - added member function to calculate rotation angle
4051 - added comments
4052
4053 * mpointing/Makefile:
4054 - added include MAstro
4055
4056 * manalysis/MSrcPosCam.[h,cc]:
4057 - moved to mpointing
4058
4059 * mpointing/MSrcPosCalc.[h,cc]:
4060 - added: Derotates a star in the camera into MSrcPosCam
4061
4062 * mpointing/Makefile, mpointing/PointingLinkDef.h:
4063 - added MSrcPosCam
4064 - added MSrcPosCalc
4065
4066 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
4067 - removed MSrcPosCam
4068
4069 * mmain/Makefile:
4070 - added include for mpointing
4071
4072 * manalysis/AnalysisIncl.h:
4073 - removed TVector2
4074
4075 * mbase/MParContainer.h:
4076 - added new abstract virtual member function SetVariables
4077 (to be used in fits)
4078 - addeed some text to class description
4079
4080 * mdata/MData.cc:
4081 - added comment
4082
4083 * mdata/MDataArray.[h,cc], mdata/MDataElement.h,
4084 mdata/MDataList.[h,cc], mdata/MDataMember.h,
4085 mfbase/MFDataMember.[h,cc], mfbase/MFilterList.[h,cc]:
4086 - added SetVariables
4087
4088 * mdata/MDataChain.[h,cc]:
4089 - added support for indexed variables [i]
4090 - added SetVariables
4091
4092 * mdata/MDataValue.[h,cc]:
4093 - added support for variable values (through SetVariables)
4094 - added support for an index
4095 - added SetVariables
4096
4097 * mfbase/MF.[h,cc]:
4098 - removed support for {}. This case is now detected
4099 automatically
4100 - added SetVariables
4101 - added support for expressiond like
4102 "MHillas.fLength<2*MHillas.fWidth"
4103
4104 * mfbase/MFDataChain.[h,cc]:
4105 - added fCond data member
4106 - addednew constructor to support fCond
4107 - added support for new condition type
4108 - adapted Print and GetRule
4109
4110 * mimage/MNewImagePar.[h,cc]:
4111 - added some comments
4112
4113 * mhist/MHStarMap.[h,cc]:
4114 - fixed to use the correct MPointingPos instead of the
4115 deprecated MMcEvt. Use MPointingPosCalc to copy the
4116 pointing position from MMcEvt to MPointingPos
4117
4118 * mbase/MMath.[h,cc]:
4119 - added, which currently only implements calculation of
4120 significance and Li/Ma significance
4121
4122 * mbase/Makefile, mbase/BaseLinkDef.h:
4123 - added MMath
4124
4125
4126
4127 2004/03/19: Markus Gaug
4128
4129 * mcalib/MHCalibrationChargePix.cc
4130 - added some style to the default Draw in order to see the
4131 label and axis titles better
4132
4133 * mcalib/MHCalibrationChargeCam.[h,cc]
4134 - store and display more information on the average pxiels
4135
4136 * mcalib/MCalibrationCam.cc
4137 - the GetPixelContent flag were not correct any more, fixed them
4138
4139 * macros/calibration.C
4140 - fixed GetPixelContent flags
4141 - draw radial profile of the variables
4142
4143 * mjobs/MJCalibration.cc
4144 - fixed GetPixelContent flags
4145 - introduced RadialProfile for some displays
4146 - removed some not so important displays
4147
4148 * manalysis/MGeomApply.cc
4149 - included MCalibrationQECam to be initialized
4150
4151 * mcalib/MCalibrationChargePix.[h,cc],
4152 mcalib/MCalibrationQEPix.[h,cc]:
4153 - replace DefinePixId by SetPixId
4154
4155 * mcalib/MCalibrationChargeCalc.[h,cc]
4156 - added MCalibrationQECam
4157 - cleaned the code up a little
4158 - give more information at the end
4159
4160 * mcalib/MCalibrationChargePix.[h,cc]
4161 - took out fNumLoGainSampels whihc is not needed any more because
4162 conversion is only done in the getters
4163 - Canceled function ApplyLoGainConversion (for same reason)
4164
4165 * msignal/MExtractSignal2.cc
4166 - remove uncommented piece of code
4167
4168 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
4169 - remove warning about pixel with low gain saturation,
4170 now in MBadPixelsPix
4171
4172 * mbadpixels/MBadPixelsPix.[h,cc], mcalib/MCalibrationChargeCam.cc:
4173 - added new flag: kDeviatingNumPhes
4174
4175 * mcalib/MCalibrationChargePix.cc
4176 - check for mean arr. time in last bin replaced by check in last
4177 two bins
4178
4179 * mcalib/MCalibrationChargePix.[h,cc],
4180 mcalib/MCalibrationChargeCam.cc,
4181 mcalib/MHCalibrationChargeCam.cc:
4182 - removed flag kHiGainFitted, kLoGainFitted, since they are
4183 available from MBadPixelsPix
4184
4185 * macros/calibration.C, macros/calibrate_data.C
4186 - a few flags from MCalibrationChargeCam::GetPixelContent were wrong,
4187 corrected them
4188
4189
4190
4191 2004/03/18: Raquel de los Reyes
4192
4193 * macros/DAQDataCheck.C
4194 - macro to check the data from the DAQ system (.raw files).
4195
4196
4197
4198 2004/03/18: Thomas Bretz
4199
4200 * manalysis/AnalysisIncl.h:
4201 - added TVector2
4202
4203 * manalysis/MSrcPosCam.[h,cc]:
4204 - added Getter/Setter using TVector2
4205
4206 * mhbase/MH.cc:
4207 - fixed GetMinimumGT for TH2 and TH3
4208
4209 * mpointing/MPointingPos.h:
4210 - added Getter/Setter for Ra/Dec
4211
4212 * mpointing/MPointingPosCalc.cc:
4213 - fill Ra/Dec into MPointingPos
4214
4215
4216
4217 2004/03/18: Markus Gaug
4218
4219 * mgeom/MGeomCam.[h,cc]
4220 - replace fMaxRadius by a TArrayF of pixel area types
4221 - new TArrayF fMinRadius of each pixel area type
4222 - backward compatibility should be given,
4223 call to GetMaxRadius() returns the value for the whole camera
4224 (which corresponds to the previous value for the Magic camera)
4225
4226 * mimage/MConcentration.cc
4227 - fixed on flog to fLog in order to compile
4228
4229
4230
4231 2004/03/17: Thomas Bretz
4232
4233 * mastro/MAstroCatalog.[h,cc]:
4234 - some simplifications and changes
4235
4236 * mastro/MAstroCatalog.[h,cc]:
4237 - some simplifications and changes
4238
4239 * mastro/MAstroSky2Local.[h,cc]:
4240 - rotation matrix from sky to local coordinates
4241 - added
4242
4243 * mastro/Makefile, mastro/AstroLinkDef.h:
4244 - MAstroSky2Local added
4245
4246 * mraw/MRawEvtPixelIter.cc:
4247 - GetIdxMaxLoGainSample(const Byte_t lofirst) const
4248 accelerated and fixed (the first slice was compared to itself
4249 and the last slice was not taken into account)
4250
4251 * manalysis/MCerPhotAnal2.cc:
4252 - fixed a bug in the new treatment of lo-gains
4253
4254 * mhvstime/MHPixVsTime.cc:
4255 - fixed missing initialization of fTypeErr in constructor
4256
4257 * mimage/MHillas.[h,cc]:
4258 - implemented member function which returns MeanX/Y as TVector2
4259
4260 * mimage/ImageIncl.h:
4261 - added TVector2
4262
4263 * manalysis/MCerPhotEvt.[h,cc]:
4264 - fixed a bug in AddPixels which - in some special circumstances -
4265 cutted pixels with high pixel indices
4266
4267
4268
4269 2004/03/17: Antonio Stamerra
4270
4271 * macros/datatrigcheck.C
4272 - added macro for time and trigger data-checking
4273
4274
4275
4276 2004/03/17: Abelardo Moralejo
4277
4278 * manalysis/MSourcePosfromStarPos.cc
4279 - added cast fabs((Double_t)ival), line 703. Otherwise it does not
4280 compile.
4281
4282 * macros/starmc.C
4283 - added parameter accepted_fraction to select fraction of events
4284 to be processed (useful to make smaller outputs).
4285
4286
4287
4288 2004/03/17: Wolfgang Wittek
4289
4290 * manalysis/MSigmabar.[h,cc]
4291 - correct calculation of sector, which was wrong
4292
4293
4294
4295 2004/03/16: Markus Gaug
4296
4297 * mhist/MHCamera.[h,cc]
4298 - added function RadialProfile which returns a TProfile of the
4299 value along the radius from the camera center
4300
4301
4302
4303 2004/03/16: Oscar Blanch Bigas
4304
4305 * mimage/MConcentration.[h,cc]
4306 - new class for Concentration stuff.
4307 - It computes and stores Concentration 1-8
4308
4309 * mimage/MNewImagePar.[h,cc]
4310 - New Concentration stuff is moved to MConcentration.
4311
4312 * mimage/MHillasCalc.[h,cc], Makefile, ImageLinkDef.h
4313 - Modifications needed to support and compile new
4314 MConcentration class.
4315
4316
4317
4318 2004/03/16: Thomas Bretz
4319
4320 * mjobs/MJ*.[h,cc]
4321 - removed some obsolete comments
4322 - removed projections from Directory (SetDirectory(0))
4323
4324
4325
4326 2004/03/16: Wolfgang Wittek
4327
4328 * manalysis/MSigmabar.[h,cc]
4329 - calculate sigmabar as mean of individual pedestalRMS
4330 instead of sqrt of mean pedestalRMS^2
4331
4332
4333
4334 2004/03/16: Oscar Blanch
4335
4336 * mimage/MNewImagePar.[h,cc]
4337 - New variables members added: fInnerSize, fInnerLeakage[1,2],
4338 fConc[3-8].
4339 - It is only ready for Magic Camera geometry. It has to be done
4340 MGeomCam base.
4341 - The version ahs not been updated since it was done on the
4342 2004/03/10 by Abelardo.
4343
4344
4345
4346 2004/03/15: Markus Gaug
4347
4348 * mcalib/MCalibrationChargePix.[h,cc],
4349 mcalib/MCalibrationChargeCam.[h,cc],
4350 mcalib/MCalibrationChargeCalc.cc:
4351 - conversion from hi- to logain now not applied until the value is
4352 exported outside the class. This is necessary for the error
4353 propagation in the F-Factor method: In the calculation of the
4354 number of Phe, the conversion factors cancel out and do not
4355 enlarge the errors
4356 - pixels with number of phe's outside the range defined by
4357 fPheFFactorRelErrLimit are not any more declared as:
4358 MCalibrationChargePix::IsFFactorMethodValid() == kFALSE ,
4359 but instead as:
4360 MBadPixelsPix::IsSuitableRun(MBadPixelsPix::kUnreliableRun) == kTRUE,
4361 Like this, everybody is allowed to calibrate pixels which give
4362 no reasonable results in the calibration without bothering that
4363 too many pixels fall out. Enjoy!
4364 - In that procedure, the classes passed _internally_ from calculation
4365 of sigmas to calculation of variances which saves all the useless
4366 square rooting.
4367 - took out pointers to MCalibrationChargeBlindPix and
4368 MCalibrationChargePINDiode in MCalibrationChargeCam.
4369
4370
4371
4372 2004/03/15: Abelardo Moralejo
4373
4374 * mmc/MMcEvt.hxx
4375 - added getter function for fZFirstInteraction
4376
4377
4378
4379 2004/03/15: Wolfgang Wittek
4380
4381 * mastro/MObservatory.[h,cc]
4382 - remove bugs in RotationAngle(theta, phi, sin, cos)
4383 replaced
4384 cos = sinl + cosl*cosp /denom;
4385 by
4386 cos = (sinl - cosl*cosp) /denom;
4387
4388
4389
4390 2004/03/15: Thomas Bretz
4391
4392 * mastro/MObservatory.[h,cc]:
4393 - implemented RotationAngle(ra, dec, time)
4394
4395 * mbase/MTask.[h,cc]:
4396 - implemented usage of a TStopwatch to retriev time consumtion
4397 informations
4398 - changed PrintStatistics not to print classes having no
4399 Process() function
4400
4401 * mbase/MTaskList.[h,cc], mfileio/MReadReports.[h,cc]:
4402 - changed PrintStatistics according to changes in MTask
4403
4404 * mraw/MRawEvtHeader.cc:
4405 - added a comment to Fill member function
4406
4407 * manalysis/MCerPhotEvt.[h,cc]:
4408 - added fLut.Set to FixSize and resize fLut by a factor of 2
4409 instead of +1 which acelerates creation of all pixels a lot
4410
4411 * mbadpixels/MBadPixelsPix.cc:
4412 - fixed a typo
4413
4414 * mfilter/MFSoftwareTrigger.cc:
4415 - made statistics output meaning independant of usage of filter!
4416
4417 * mhbase/MFill.[h,cc]:
4418 - added possibility to give tab a different name
4419
4420 * mhist/MHCamera.cc:
4421 - fixed a bug when determin scale for same-option
4422
4423 * mjobs/MJCalibration.cc:
4424 - changed tab names for MFillH
4425
4426 * mjobs/MJExtactSignal.cc:
4427 - added MRawEvtHeader to output
4428
4429 * mbase/MStatusDisplay.[h,cc]:
4430 - changed displayed year
4431 - read and store MStatusArray to and from files
4432
4433 * mfileio/MReadTree.cc:
4434 - enhanced output
4435
4436 * mmain/MCameraDisplay.cc, mmain/MEventDisplay.[h,cc]:
4437 - added preliminary mode to display F1/F2/F3-files
4438
4439 * mbase/MStatusArray.[h,cc]:
4440 - added
4441
4442 * mbase/Makefile, mbase/BaseLinkDef.h:
4443 - added MStatusArray
4444
4445 * mhits/MHCamera.[h,cc], mgui/MHexagon.[h,cc]:
4446 - improved drawing MHCamera with 'same' option
4447
4448
4449
4450 2004/03/13: Markus Gaug
4451
4452 * mcalib/MCalibrationChargeCalc.cc, mcalib/MCalibrationChargeCam.cc,
4453 mcalib/MCalibrationChargePix.[h,cc],
4454 mcalib/MHCalibrationChargeCam.cc,
4455 mcalib/MHCalibrationChargeLoGainPix.cc:
4456 - fixed Low Gain calibration
4457
4458 * mcalib/MHGausEvents.cc:
4459 - changed default fit prob. limit from 0.005 to 0.001
4460
4461 * mbadpixels/MBadPixelsPix.h :
4462 - IsCalibrationResultOK does not ask for FitOK any more
4463
4464 * mcalib/MHCalibrationChargeCam.cc:
4465 - replaced Rel. Err. Limit for outliers in Phe's from 5 sigma to 7
4466
4467 * mraw/MRawEvtPixelIter.[h,cc]:
4468 - function GetIdxMaxLoGainSamples can be called optionally with
4469 offset (because first "loGain" samples are often in reality
4470 hiGain with high values.
4471
4472
4473
4474 2004/03/12: Sebastian Raducci
4475
4476 * manalysis/Makefile
4477 - added mastro in the include directories
4478
4479
4480
4481 2004/03/12: Thomas Bretz
4482
4483 * merpp.cc:
4484 - added 'force' option
4485
4486 * manalysis/MCerPhotAnal2.cc:
4487 - extract pedestal and pedestal rms from lo-gain if hi-gain not
4488 above a certain athreshold
4489
4490 * mastro/MAstroCatalog.[h,c]:
4491 - added text argument to DrawStar
4492
4493 * mbase/MStatusDisplay.cc:
4494 - some small changes to output of SaveAsPS
4495
4496 * mfilter/MFCosmics.cc:
4497 - changed output of filter statistics
4498
4499 * mbadpixels/MBadPixelsTreat.[h,cc]:
4500 - fixed some problems with the code - now it should work like
4501 expected
4502 - added a new member function to be able to change the number
4503 of required neighbors
4504
4505
4506
4507 2004/03/12: Wolfgang Wittek
4508
4509 * manalysis/Makefile
4510 - include 'mastro'
4511
4512 * manalysis/MSourcePosfromStarPos.[h,cc]
4513 - include MObservatory.h
4514 - call member function Rotationangle() of MObservatory
4515
4516
4517
4518 2004/03/12: Markus Gaug
4519
4520 * mjobs/MJCalibration.cc
4521 - updated call in displays to the corr. Cams.
4522
4523 * macros/calibrate_data.C
4524 - macro to study calibrate and study data used in Munich and IFAE
4525
4526
4527
4528 2004/03/12: Antonio Stamerra
4529
4530 * mraw/MRawEvtHeader.[h,cc]
4531 - Added the method GetTriggerID() to decode the trigger pattern.
4532
4533
4534
4535 2004/03/11: Abelardo Moralejo
4536
4537 * mimage/MHillasCalc.cc
4538 - Added some printout in PostProcess, to better express the reasons
4539 for which the reconstruction of some events did not succeed.
4540
4541
4542
4543 2004/03/11: Thomas Bretz
4544
4545 * status.cc:
4546 - updated
4547
4548 * manalysis/MCerPhotAnal2.cc:
4549 - removed an obsolete debug output
4550
4551 * mhist/MHCamera.[h,cc]:
4552 - added same-option to camera display
4553
4554 * mbadpixels/MBadPixelsCalc.[h,cc], mbadpixels/MBadPixelsTreat.[h,cc]:
4555 - implemented functionality of MBlindPixelsCalc2
4556
4557 * mbadpixels/MBadPixelsCam.[h,cc], mbadpixels/MBadPixelsPix.[h,cc],
4558 mbadpixels/MMcBadPixelsSet.cc, mcalib/MCalibrationChargeCalc.cc,
4559 mcalib/MCalibrationChargePix.cc, mcalib/MHCalibrationChargeCam.cc:
4560 - replaced several Set/GetUnsuitable* by a single member function
4561
4562
4563
4564 2004/03/11: Markus Gaug
4565
4566 * mbadpixels/MBadPixelsPix.h
4567 - removed bits about validity of calibration methods
4568 - IsCalibrationResultOK asks also from IsSuitableRun
4569
4570 * mbadpixels/MBadPixelsCam.cc
4571 - updated GetPixelContent
4572 - added Print function
4573
4574 * mcalib/MCalibrationChargeCam.[h,cc]
4575 mcalib/MCalibrationChargePix.h, mcalib/MCalibrationChargeCalc.cc:
4576 - removed pointers to MGeomCam and MBadPixelsCam in MCalibrationChargeCam
4577 - use two loops over pixels in order to determine mean flux of phe;s to
4578 discard pixels far outside the normal distribution
4579
4580 * mcalib/MCalibrate.cc
4581 - added case that no MBadPixelsCam is available.
4582
4583 * mcalib/MHCalibrationChargeCam.cc
4584 - adapted to new MBadPixelsPix::SetUnsuitable function
4585
4586
4587 2004/03/10: Abelardo Moralejo
4588
4589 * manalysis/MCerPhotPix.[h,cc]
4590 - Added member fIsHGSaturated, and setter/getter functions.
4591 Updated class version to 4.
4592
4593 * mcalib/MCalibrate.cc, MCalibrateData.cc
4594 - Added setting of MCerPhotPix.fIsHGSaturated if one or more HG
4595 slices saturate.
4596
4597 * mimage/MNewImagePar.[h,cc]
4598 - Added member fNumHGSaturatedPixels to count the number of pixels
4599 in which high gain saturates. Added getter funciton for it.
4600 Updated class version to 3.
4601
4602
4603
4604 2004/03/10: Markus Gaug
4605
4606 * mcalib/MCalibrationChargeCalc.cc,
4607 mcalib/MCalibrationChargePix.[h,cc],
4608 mcalib/MCalibrationChargeCam.[h,cc]:
4609 - calculation of conversion factor with F-Factor method from
4610 same mean number of photons, derived from weighted mean number
4611 of photo-electrons from inner and outer pixels, respectively
4612
4613 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
4614 - fixed the projections (did only display inner pixels up to now)
4615
4616 * macros/calibration.C
4617 - small bug fixed in display of rel. arrival times
4618 ( used MArrivalTimeCam instead of MHCalibrationRelTimeCam)
4619
4620 * mbadpixels/MBadPixelsCam.cc
4621 - replaced some InitSize(idx) by InitSize(idx+1) in order not to crash
4622 to program when reading from an ascii-file.
4623
4624 * mbadpixels/MBadPixelsCalc.cc
4625 - replaced one SetUnsuitableRun(....) by the new version without
4626 argument.
4627
4628
4629
4630 2004/03/10: Thomas Bretz
4631
4632 * mfilter/MFSoftwareTrigger.[h,cc]:
4633 - changed to support also a predifined number of NN
4634
4635 * mastro/MAstroCatalog.[h,cc]:
4636 - many enhancements
4637 - many speed improvements
4638
4639 * mbadpixels/MBadPixelsPix.[h,cc]:
4640 - fixed
4641
4642
4643
4644 2004/03/10: Ester Aliu
4645
4646 * mtemp/MIslands.[h,cc]
4647 - New MParContainer to hold information about islands
4648 (number of islands, pixels in each Island, Signal/Noise of
4649 each Island).
4650
4651 * mtemp/MIslandCalc.[h,cc]
4652 - New MTask to count and characterize Islands.
4653
4654
4655
4656 2004/03/09: Thomas Bretz
4657
4658 * Makefile.rules:
4659 - replaced *.o by $(...) for building archives
4660
4661 * mjobs/MJCalibration.cc:
4662 - exchanged apply and merge task
4663
4664 * mjobs/MJCalibration.h, mjobs/MJExtractSignal.h, mjobs/MJPedestal.h:
4665 - fixed some const-qualifiers
4666
4667 * mcalib/MHCalibrationChargeBlindPix.cc,
4668 mcalib/MHCalibrationChargeCam.cc,
4669 mcalib/MHCalibrationChargePINDiode.cc
4670 - removed some obsolete output when calling FindCreateObj
4671 - changed some 'not found' output messages to be 'Mars-compliant'
4672 - replaced some gLog by *fLog
4673
4674
4675
4676 2004/03/08: Markus Gaug
4677
4678 * mbadpixels/MBadPixelsPix.h
4679 - small modifications for better readability
4680 - remove Getters for calibration methods
4681 - added flag "UnReliableRun" in fInfo[0]
4682
4683 * mcalib/MHCalibrationChargeCam.cc, mcalib/MCalibrationChargePix.cc:
4684 - fill MBadPixelsPix with UnReliableRun or UnSuitableRun when
4685 calibration does not succeed.
4686
4687 * mcalib/MCalibrationChargeCam.cc
4688 - displaying saturation also for not-valid pixels in GetPixelContent
4689
4690 * msignal/MExtractedSignalCam.[h,cc], msignal/MExtractSignal.[h,cc],
4691 msignal/MExtractSignal2.[h,cc], mananlysis/MHPedestalCam.cc,
4692 mcalib/MCalibrationChargeCalc.[h,cc]:
4693 - in SetUsedFADCSlices, also the window (hi-and logain) is set.
4694 This because MExtractSignal2 set the whole window which was much
4695 bigger than the actually used one. This bug is now removed.
4696
4697
4698
4699 2004/03/08: Thomas Bretz
4700
4701 * merpp.cc:
4702 - fixed a bug in the screen output
4703
4704 * mgeom/MGeomMirror.cc:
4705 - added comment
4706
4707 * mmc/MMcConfigRunHeader.h:
4708 - added member function GetMirrors
4709
4710
4711
4712 2004/03/08: Abelardo Moralejo
4713
4714 * macros/starmc.C, starmcstereo.C, mccalibrate.C
4715 - adapted to m. Gaug's changes: now one MBadPixelsCam containers is
4716 added for each telescope to the parameter list.
4717
4718 * mmain/MEventDisplay.cc, Makefile
4719 - added MBadPixelsCam to par list, and mbadpixels/ to includes.
4720 Necessary due to changes in MCalibrate.
4721
4722
4723
4724 2004/03/06: Markus Gaug
4725
4726 * macros/calibration.C
4727 - adapted call to MHCamera::ProjectionS to the new version
4728
4729 * mcalib/Makefile
4730 - include directory mbadpixels
4731
4732 * manalysis/Makefile
4733 - include directory mbadpixels
4734
4735 * mcalib/MCalibrationChargeCalc.[h,cc]
4736 - include MBadPixelsCam
4737 - remove exclusion of pixels from ascii-file
4738 (now accessible from MBadPixelsCam)
4739
4740 * mcalib/MCalibrationChargePix.[h,cc]
4741 - include MBadPixelsCam
4742
4743 * mcalib/MCalibrationChargeCam.[h,cc]
4744 - include MBadPixelsCam
4745
4746 * mcalib/MHCalibrationChargeCam.[h,cc]
4747 - include MBadPixelsCam
4748 - include one additional MBadPixelsPix for the average inner and
4749 outer pixel, respectively
4750
4751 * mcalib/MHCalibrationChargePix.[h,cc]
4752 - make fSaturated and fPickup a Float_t (for average pixel)
4753
4754 * mbadpixels/MBadPixelsPix.h
4755 - include the CalibrationType_t infos
4756 - exchange "SetUnsuitable" by "SetUnsuitableRun"
4757
4758 * mbadpixels/MBadPixelsCam.cc, mbadpixels/MMcBadPixelsSet.cc:
4759 - exchange "SetUnsuitable" by "SetUnsuitableRun"
4760
4761 * mbadpixels/MBadPixelsCalc.cc:
4762 - exchange "SetUnsuitable" by "SetUnsuitableEvt"
4763
4764 * manalysis/MGeomApply.cc
4765 - remove obsolete MArrivalTime
4766 - add MBadPixelsCam
4767
4768 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc]
4769 - implemented calls to MBadPixelsCam
4770
4771 * macros/calibration.C, macros/bootcampstandardanalysis.C,
4772 macros/pedphotcalc.C
4773 - implemented calls to MBadPixelsCam
4774
4775 * mjobs/MJCalibration.cc
4776 - call to MBadPixelsCam
4777
4778
4779
4780 2004/03/05: Nadia Tonello
4781
4782 * manalysis/MBlindPixelsCalc2.[h,cc], manalysis/AnalysisLinkDef.h,
4783 manalysis/Makefile
4784 - Temporary class added (will be included in mbadpixels/ soon)
4785 - All the functions of MBlindPixelCalc are kept(with small improvements)
4786 - New function added: SetCheckPedestalRms
4787
4788 * manalysis/MCerPhotPix.h
4789 - Status Unmapped added (not include the pixel in the cleaned image)
4790
4791 * mimage/MImgCleanStd.cc
4792 - Checks for Unmapped status added
4793
4794 * mastro/MAstroCatalog.cc, msql/MSQLServer.cc:
4795 - include <stdlib.h> to solve compilation error
4796
4797
4798
4799 2004/03/05: Sebastian Raducci
4800
4801 * msignal/MArrivalTimeCalc.cc
4802 - fixed a little bug (exchanged a - with a + in the Calc() method)
4803
4804
4805
4806 2004/03/05: Markus Gaug
4807
4808 * mcalib/MCalibraitonChargeCalc.cc
4809 - remove some runheader line:
4810 if (runheader->IsMonteCarloRun())
4811 return kTRUE;
4812 which gave always true since this week, don't know why.
4813 - added some information in class description
4814
4815
4816
4817 2004/03/04: Sebastian Raducci
4818
4819 * msignal/MArrivalTimeCalc.cc
4820 - fixed a memory leak (the spline was not deleted...)
4821
4822
4823
4824 2004/03/04: Thomas Bretz
4825
4826 * mgeom/MGeomCam.[h,cc]:
4827 - added new data member fNumAreas
4828 - added new function CalcNumAreas
4829 - increased class version to 3
4830
4831 * mgeom/MGeomCamMagic.cc:
4832 - added setting of area index
4833
4834 * mgeom/MGeomPix.[h,cc]:
4835 - added fAidx data member
4836 - added getter function fAidx
4837 - increased class version to 3
4838
4839 * macros/sectorvstime.C:
4840 - added example of how to plot the evolution of a sector vs time
4841
4842 * mhist/MHVsTime.[h,cc], mhist/MHPixVsTime.[h,cc]:
4843 - moved to mhvstime
4844
4845 * mhvstime/MHSectorVsTime.[h,cc]:
4846 - added
4847
4848 * Makefile:
4849 - added mhvstime
4850
4851 * mhvstime/Makefile, mhvstime/HVsTimeLinkDef.h,
4852 mhvstime/HVsTimeIncl.h:
4853 - added
4854
4855 * mhist/Makefile, mhist/HistLinkDef.h,
4856 - removed MHVsTime
4857 - removed MHPixVsTime
4858
4859 * macros/rootlogon.C, macros/dohtml.C:
4860 - added new directory mhvstime
4861
4862 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
4863 - changes such, that it doesn't crash if signal has no lo-gain
4864 (This might still give wrong results!)
4865
4866 * macros/dohtml.C:
4867 - added pixvstime.C
4868 - added sectorvstime.C
4869
4870 * manalysis/MMcCalibrationUpdate.cc:
4871 - some changes on file consistency check done by Abelardo,
4872 he may comment on it
4873
4874 * mhist/MHCamera.[h,cc]:
4875 - changed to support also dividing the camera in pixels area indices
4876
4877 * mhist/MHEvent.cc:
4878 - minor change
4879
4880 * mjobs/MJPedestal.cc:
4881 - adapted to changes in MHCamera
4882
4883 * mastro/MAstroCatalog.[h,cc]:
4884 - added preliminary catalog
4885
4886 * mastro/Makefile, mastro/AstroLinkDef.h:
4887 - added MAstroCatalog
4888
4889
4890
4891 2004/03/03: Thomas Bretz
4892
4893 * mgeom/MGeomCam.cc:
4894 - give a name and title also if the default constructor is used
4895
4896 * mgeom/MGeomMirror.[h,cc]:
4897 - added member function GetReflection
4898 - added persistent data member fReflector
4899
4900 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc:
4901 - fixed a typo in the output
4902
4903 * mraw/MRawFileWrite.cc:
4904 - added the missing '.' to MRawRunHeader. Because of the design of
4905 MReadTree this is backward compatible
4906
4907 * mraw/MRawRunHeader.h:
4908 - removed last change from Abelardo. '>255' is the correct
4909 check for MC files following the definition that all MC files
4910 have run types >255 which was made in the past.
4911
4912 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]:
4913 - created ReInit member function to hold all code (moved from
4914 PreProcess) accessing the run header. The run header is not
4915 available in PreProcess. That it was working before was only
4916 by chance, because the run type is initialized with 65535 which
4917 is != 255 but not >255.
4918
4919
4920
4921 2004/03/03: Sebastian Raducci
4922
4923 * msignal/MArrivalTimeCalc.cc
4924 - The calculation of the arrival times is made only when needed
4925 (when the HalfMax is over the pedestal)
4926
4927 * mtools/MCubicSpline.cc
4928 - Commented out an annoying warn
4929
4930
4931
4932 2004/03/03: Abelardo Moralejo
4933
4934 * mraw/MRawRunHeader.h
4935 - Replaced
4936 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by
4937 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
4938 since the latter is the exact translation of what the function
4939 intends to do. I do not know why, but the display of real data
4940 did not work with the upper line!
4941
4942 * mgeom/MGeomCam.cc
4943 - Undid yesterday change! I do not know why, display completely
4944 fails after that change, both for old and new camera files.
4945 Put back fPixels[i] = new MGeomPix; in constructor.
4946
4947
4948
4949 2004/03/02: Abelardo Moralejo
4950
4951 * mmc/MMcCorsikaRunHeader.[h,cc]
4952 - Added operator [] to get references to the objects in
4953 TObjArray fTelescopes.
4954 - Added Print() function.
4955 - Added GetNumCT() function.
4956 - Replaced
4957 fTelescopes[i]= new MGeomCorsikaCT;
4958 by
4959 MGeomCorsikaCT* dummy = new MGeomCorsikaCT();
4960 fTelescopes.Add(dummy);
4961
4962 * mgeom/MGeomCorsikaCT.[h,cc]
4963 - Added getter functions for telescope coordinates.
4964 - Added Print() function.
4965
4966 * mgeom/MGeomCam.cc => NOTE: this change was undone later!
4967 - Replaced
4968 fPixels[i] = new MGeomPix;
4969 by
4970 MGeomPix* dummy = new MGeomPix();
4971 fPixels.Add(dummy);
4972
4973
4974
4975 2004/03/02: Thomas Bretz
4976
4977 * mcalib/MCalibrateData.cc:
4978 - removed usage of MGeomCam (you have MGeomApply for this!)
4979
4980
4981
4982 2004/03/01: Nadia Tonello
4983
4984 * manalysis/MCerPhotEvt.cc
4985 - TObject *MCerPhotEvtIter::Next() now returns Used pixels
4986 only if fUsedonly=kTRUE, otherwise it returns all the pixels
4987 in the array
4988
4989
4990
4991 2004/03/01: Sebastian Raducci
4992
4993 * msignal/MArrivalTimeCalc.[cc,h]
4994 - now the arrival time is at the half max of the spline:
4995 half max = (maximum - pedestal)/2
4996
4997 * mmain/MEventDisplay.cc
4998 - fixed an include (from MArrivalTime.h to MArrivalTimeCam.h)
4999
5000
5001
5002 2004/03/01: Wolfgang Wittek
5003
5004 * mhist/MHStarMap.[h,cc]
5005 - remove bugs
5006 - change GetRotationAngle() such that it can be called from outside
5007
5008
5009
5010 2004/03/01: Thomas Bretz
5011
5012 * Makefile:
5013 - enhanced all calls to subsequent makes by '-f Makefile' to
5014 make sure the correct Makefile is called
5015
5016 * merpp.cc:
5017 - enhanced interpretation of time
5018 - fixed a bug in determin the file-type
5019
5020 * mbase/MTime.[h,cc]:
5021 - added GetGmst() member function
5022
5023 * mastro/MAstro.[h,cc]:
5024 - added Coordinate2Angle
5025 - added AngularDistance
5026 - implemented UT2GMST
5027 - replaced defined by TMath::Pi()
5028
5029 * mastro/MObservatory.[h,cc]:
5030 - added data members for sin-/cos-component of latitude
5031 - added calculation of rotation angle
5032
5033 * mhist/MHStarMap.[h,cc]:
5034 - changes to use MObservatory member function
5035
5036 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotAnal2.cc,
5037 manalysis/MCerPhotCalc.cc, manalysis/MMcCalibrationUpdate.cc,
5038 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc,
5039 manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc,
5040 mcalib/MCalibrationChargeCalc.cc, mcalib/MMcCalibrationCalc.cc
5041 - changed to use IsMonteCarloRun() now
5042
5043 * manalysis/MMcCalibrationUpdate.cc:
5044 - unified output to log-stream
5045 - replaced sqrt by TMath::Sqrt
5046
5047 * mcalib/MCalibrationChargeCalc.cc:
5048 - unified output to log-stream
5049 - removed .Data() from TString where obsolete
5050 - fixed memory leak using gSystem->ExpandPathName
5051
5052 * mpointing/MPointingPosCalc.cc, mraw/MRawFileWrite.cc:
5053 - adde class name to used kRT*/kTT* enums
5054
5055 * mraw/MRawEvtHeader.h:
5056 - made enum data member of class
5057
5058 * mraw/MRawRunHeader.[h,cc]:
5059 - made kMagicNumber and kMaxFormatVersion a static data
5060 member of the class
5061 - added IsMonteCarloRun member function
5062
5063
5064
5065 2004/02/27: Markus Gaug
5066
5067 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
5068 - put in call to MHCamera::Projection the name of the calling
5069 class, otherwise the projected hsitogram will be overwritten by
5070 an empyt one.
5071
5072 * mcalib/MHCalibrationChargePix.[h,cc],
5073 mcalib/MHCalibrationHiGainChargePix.[h,cc],
5074 mcalib/MHCalibrationLoGainChargePix.[h,cc]:
5075 - histogram name setting and title setting moved to constructor,
5076 Functions Init and ChangeHistId derive directly from
5077 MHcalibrationChargePix
5078
5079 * mcalib/MHCalibrationChargeCam.[h,cc],
5080 mcalib/MCalibrationChargeCam.[h,cc],
5081 mcalib/MCalibrationChargeCalc.[h,cc]:
5082 - introduced "average inner" and "average outer" higain and logain
5083 pixels.
5084
5085
5086
5087 2004/02/27: Raducci Sebastian
5088
5089 * mhist/Makefile
5090 - added mastro in the include list
5091
5092
5093
5094 2004/02/27: Abelardo Moralejo
5095
5096 * mmain/MEventDisplay.cc
5097 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam.
5098 - Updated display of MC data: removed MCerPhotCalc, and replaced
5099 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now
5100 MPedPhotCam is filled and all the camera display tabs are shown
5101 correctly (most were not working for MC events since a while
5102 ago).
5103
5104 * mmain/Makefile
5105 - Added mcalib to list of include directories.
5106
5107 * manalysis/MMcCalibrationUpdate.[h,cc]
5108 - Added member variable Bool_t fOuterPixelsScaling, which is
5109 kTRUE by default. If set to kFALSE, MCalibrationCam is filled
5110 such that MCerPhotEvt will later be filled with the signal as it
5111 is, not corrected for the (possibly) different gain of the outer
5112 pixels electronic chain. This option was necessary to allow for
5113 the change in the camera display (see above).
5114
5115 * macros/starmc.C
5116 - added (optional) division of output into two, for use as train
5117 and test samples in g/h separation studies.
5118
5119
5120
5121 2004/02/26: Hendrik Bartko
5122
5123 * macros/dohtml.C
5124 - included the path msignals/
5125
5126
5127
5128 2004/02/26: Abelardo Moralejo
5129
5130 * macros/starmcstereo.C
5131 - changed filters to divide data between train and test sample for
5132 gamma hadron separation studies. Now we use the modulus operator
5133 applied to (Corsika) event number:
5134 MF filter1("{MMcEvt;1.fEvtNumber%2}<0.5");
5135 MF filter2("{MMcEvt;1.fEvtNumber%2}>0.5");
5136 - cleaned up a bit the way the CT coordinates are fed to the task
5137 MStereoCalc.
5138 - Changed default FADC integration range (center range to adapt to
5139 new camera).
5140
5141
5142
5143 2004/02/26: Thomas Bretz
5144
5145 * mhist/MHCamera.cc:
5146 - fixed a function description
5147
5148 * mreport/MReport.cc, mreport/MReportFileRead.cc:
5149 - introduced return case -1
5150
5151 * Makefile.rules:
5152 - remove all dependancy files when calling 'rmdep'
5153
5154 * mbase/MAGIC.h, mmc/MMcEvt.hxx:
5155 - moved ParticleId_t to MMcEvt
5156 - implemented MMcEvt::GetParticleName
5157 - implemented MMcEvt::GetEnergyStr
5158
5159 * mfilter/MFGeomag.cc, mfilter/MFParticleId.cc, mhist/MHCompProb.cc,
5160 mhist/MHEvent.cc, mhist/MHHadronness.cc,
5161 mmontecarlo/MMcTriggerRateCalc.cc, mranforest/MHRanForest.cc:
5162 - fixed usage of ParticleId_t
5163
5164 * msignal/Makefile:
5165 - removed obsolete includes
5166
5167 * mastro/Makefile, mastro/AstroLinkDef.h, mastro/MAstro.[h,cc],
5168 mastro/MObservatory.[h,cc]:
5169 - added
5170
5171 * mbase/MAstro.[h,cc]:
5172 - removed
5173
5174 * mbase/Makefile, mbase/BaseLinkDef.h:
5175 - removed MAstro
5176
5177 * Makefile:
5178 - added mastro
5179 - added msql
5180 - added mfbase
5181
5182 * mtemp/MObservatory.[h,cc], mtemp/MObservatoryLocation.[h,cc]:
5183 - removed
5184
5185 * merpp.cc:
5186 - added Sql support
5187
5188 * mraw/MRawFileRead.h:
5189 - added GetFileName
5190
5191 * msql/Makefile, msql/SqlLinkDef.h, msql/SqlIncl.h,
5192 MSQLServer.[h,cc], MSqlInsertRun.[h,cc]:
5193 - added
5194
5195 * mfilter/MF.[h,cc], mfilter/MFDataChain.[h,cc],
5196 mfilter/MFDataMember.[h,cc], mfilter/MFEventSelector.[h,cc],
5197 mfilter/MFEventSelector2.[h,cc], mfilter/MFRealTimePeriod.[h,cc]:
5198 - moved to mfbase
5199
5200 * mfbase/Makefile, mfbase/FBaseLinkDef.h, mfbase/FBaseIncl.h:
5201 - added
5202
5203 * merpp.cc:
5204 - implemented control of gDebug (root debugging)
5205
5206 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc],
5207 mfileio/MWriteRootFile.[h,cc]:
5208 - implemented CheckAndWrite return value
5209
5210 * mfileio/MWriteRootFile.cc:
5211 - fixed updating already existing branches (eg concatenating report
5212 files)
5213
5214 * macros/dohtml.C, macros/rootlogon.C:
5215 - added mastro
5216 - added mfbase
5217 - added msql
5218
5219 * mraw/MRawEvtHeader.h:
5220 - implemented GetNumTrigLvl1
5221 - implemented GetNumTrigLvl2
5222
5223
5224
5225 2004/02/25: Markus Gaug
5226
5227 * mcalib/MExtractBlindPixel.[h,cc],
5228 mcalib/MExtractPINDiode.[h,cc],
5229 mcalib/MExtractedSignalBlindPixel.[h,cc],
5230 mcalib/MExtractedSignalPINDiode.[h,cc],
5231 mcalib/Makefile, msignal/Makefile, mcalib/CalibLinkDef.h,
5232 msignal/SignalLinkDef.h:
5233 - moved blindpixel and PINdiode extractors to msignal
5234
5235
5236 * mcalib/MCalibrationQECam.[h,cc], mcalib/MCalibrationQEPix.[h,cc]:
5237 - two new classes to hold the quantum efficieny information of the
5238 calibration
5239
5240 * msignal/MArrivalTimeCalc.[h,cc]
5241 - fill now MArrivalTimePix instead of MArrivalTime
5242
5243 * mcalib/MHCalibrationChargeCam.cc
5244 - display only valid pixels for the corr. values in GetPixelContent
5245
5246 * mcalib/MHCalibrationRelTimeCam.cc
5247 - is now filled from MArrivalTimeCam instead of MArrivalTime
5248
5249 * macros/calibration.C
5250 - divided into two macros: calibration.C using the MJPedestal
5251 standard procedure and pedestalstudies.C using the old
5252 procedures
5253
5254 * macros/pedestalstudies.C
5255 - new macro containing the first previous part of calibration.C
5256
5257 * mcalib/MCalibrationChargeBlindPix.h,
5258 mcalib/MCalibrationChargePINDiode.h, mbase/MAGIC.h,
5259 mjobs/MJCalibration.cc:
5260 - definition of PulserColot_t in MAGIC.h.
5261
5262
5263
5264 2004/02/25: Hendrik Bartko
5265
5266 * macros/rootlogon.C
5267 - set the include path also to msignals/
5268
5269 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractSignal2.[h,cc],
5270 manalysis/MExtractedSignalCam.[h,cc],
5271 manalysis/MExtractedSignalPix.[h,cc],
5272 manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc],
5273 manalysis/MArrivalTimeCalc2.[h,cc]:
5274 - removed
5275
5276 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
5277 - removed classes mentioned above
5278
5279 * msignal/MExtractSignal.[h,cc], msignal/MExtractSignal2.[h,cc],
5280 msignal/MExtractedSignalCam.[h,cc],
5281 msignal/MExtractedSignalPix.[h,cc],
5282 msignal/MArrivalTime.[h,cc], msignal/MArrivalTimeCalc.[h,cc],
5283 msignal/MArrivalTimeCalc2.[h,cc]:
5284 - added
5285
5286 * msignal/Makefile, msignal/AnalysisLinkDef.h:
5287 - added classes mentioned above
5288
5289 * mfilter/Makefile, mcalib/Makefile, mjobs/Makefile, mmain/Makefile:
5290 - added include msignal
5291
5292
5293
5294
5295 2004/02/25: Wolfgang Wittek
5296
5297 * mcalib/MCalibrateData.[h,cc]
5298 - initialize size for MPedPhotCam
5299
5300
5301
5302 2004/02/24: Wolfgang Wittek
5303
5304 * manalysis/MSourcPosfromStarPos.[h,cc]
5305 - change member function SetSourceAndStarPosition() to expect sky
5306 coordinates in the standard units
5307 - generalize to more than 1 star
5308 - the class is not yet fully tested
5309
5310 * mfilter/MFSelBasic.[h,cc]
5311 - change default values of cuts
5312
5313
5314
5315 2004/02/24: Markus Gaug
5316
5317 * mjobs/MJCalibration.cc, macros/calibration.C,
5318 macros/bootcampstandardanalysis.C, macros/pedphotcalc.C:
5319 - added MCalibrationChargeBlindPix to plist
5320 - added new filling of histograms with MFillH
5321 - changed SetPulserColor to MCalibrationChargeBlindPix and
5322 MCalibrationChargePINDiode
5323
5324 * mcalib/MHCalibrationChargeBlindPix.[h,cc]:
5325 - receives a pointer to MCalibrationChargePINDiode which is filled
5326 with the results and told to calculate the fluxes in the
5327 Finalize function
5328 - is filled via MFillH from MExtractBlindPixel
5329 - SetPulserColor directly in this class
5330
5331 * mcalib/MCalibrationChargeBlindPix.[h,cc]
5332 - new storage container of the blind pxiel resutls, replaces
5333 MCalibrationBlindPix
5334
5335 * mcalib/MCalibrationChargeCalc.[h,cc]:
5336 - does not fill the histograms any more, but does ony the
5337 calculations in the postprocess. No pointer to MExtractPINDidoe
5338 or MExtractBlindPixel any more.
5339
5340 * mcalib/MCalibrationChargePix.cc
5341 - discovered an error in the calculation of phe's in
5342 CalcFFactorMethod(). The average QE was applied twice.
5343 This error had been introduced on 13/02/04
5344 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2
5345 - CalcFFactor asks for IsChargeValid before calculating anything
5346
5347 * mcalib/MCalibrationChargePINDiode.[h,cc]
5348 - added function SetFluxOutsidePlexiglassAvailable
5349 - SetPulserColor directly in this class
5350
5351 * mcalib/MCalibrationChargeCam.cc
5352 - removed function SetPulserColor from here
5353
5354 * mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationConfig.h,
5355 mcalib/MHCalibrationPINDiode.[h,cc],
5356 mcalib/MCalibrationBlindPix.[h,cc],
5357 mcalib/MHCalibrationBlindPixel.[h,cc]:
5358 - removed since obsolote
5359
5360 * mcalib/MHCalibrationChargePix.cc
5361 - make fPickup an Int_t
5362
5363 * mcalib/MCalibrate.cc
5364 - test validity of every calibration method before retrieving
5365 conversion factors
5366
5367 * mcalib/MHGausEvents.[h,cc]
5368 - add possibility to set fit ranges in call to FitGaus
5369 - make function CreateXaxis protected
5370
5371
5372
5373 2004/02/23: Markus Gaug
5374
5375 * mraw/MRawEvtPixelIter.h
5376 - include GetNumHiGainSamples and GetNumLoGainSamples
5377
5378 * mcalib/MExtractedSignalBlindPixel.h,
5379 mcalib/MExtractBlindPixel.[h,cc]:
5380 - included storage of pedestal
5381
5382 * mcalib/MHGausEvents.[h,cc]
5383 - make the fit functions protected
5384
5385
5386
5387 2004/02/22: Markus Gaug
5388
5389 * mfilter/MFCosmics.[h,cc]
5390 - fMaxNumEmpty changed from absolute number to relative number of
5391 pixels
5392
5393 * mcalib/MHGausEvents.h
5394 - remove the "->" from the pointers which are initialized only
5395 in certain cases. The streamer did not work in case that
5396 MFGausFit was left at the NULL pointer.
5397
5398
5399
5400 2004/02/21: Markus Gaug
5401
5402 * manalysis/MExtractedSignalPix.[h,cc]
5403 - changed variable fIsLoGainUsed to fLoGainUsed
5404 - added function GetNumHiGainSaturated()
5405
5406
5407 2004/02/20: Markus Gaug
5408
5409 * mcalib/MHCalibrationChargeHiGainPix.[h,cc], mcalib/Makefile,
5410 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
5411 mcalib/CalibLinkDef.h
5412 - new class to replace MHCalibrationPixel,
5413 based on MHCalibrationChargePix
5414
5415 * mcalib/MCalibrationChargeCalc.[h,cc]
5416 mcalib/MCalibrationChargeCam.[h,cc]
5417 mcalib/MCalibrationChargePix.[h,cc]
5418 mcalib/MCalibrationChargePINDiode.[h,cc]
5419 mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
5420 mcalib/MCalibrationPINDiode.[h,cc]:
5421 - added the "charge" versions, remove the old ones. The histograms
5422 should be filled in the MH... versions independently of
5423 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
5424 now and will later be so for the pixels and the blind pixel.
5425
5426 * mcalib/MHCalibrationChargePINDiode.[h,cc]
5427 - receives a pointer to MCalibrationChargePINDiode which is filled
5428 with the results and told to calculate the fluxes in the
5429 Finalize function
5430
5431 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc],
5432 mcalib/MMcCalibrationCalc.[h,cc], mjobs/MJCalibration.[h,cc],
5433 manalysis/MMcCalibrationUpdate.[h,cc],
5434 mjobs/MJExtractSignal.[h,cc], manalysis/MGeomApply.cc,
5435 mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C,
5436 macros/bootcampstandardanalysis.C,
5437 macros/pedphotcalc.C:
5438 - replace MCalibrationCam by MCalibrationChargeCam
5439 - replace MCalibrationCalc by MCalibrationChargeCalc
5440
5441
5442
5443 2004/02/19: Markus Gaug
5444
5445 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
5446 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
5447 manalysis/MMcCalibrationUpdate.cc:
5448 - standardized naming of variables containing "Error", this also affected
5449 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
5450
5451 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
5452 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
5453 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
5454 - took out some configuration numbers and put them directly into
5455 the class
5456 - remove completely MCalibrationConfig.h
5457
5458
5459
5460 2004/02/19: Abelardo Moralejo
5461
5462 * mhist/MHEvent.[h,cc]:
5463 - Changed names of Event "types" to make them more descriptive.
5464 Former kEvtSignal is now called kEvtSignalDensity, and indicates
5465 pixel content scaled by area. Added kEvtSignalRaw, which
5466 corresponds to pixel content (with no scaling) in whatever units
5467 (this depends on how the MHEvent object is filled!). The default
5468 constructor initializes type=kEvtSignalRaw.
5469
5470 * mmain/MEventDisplay.cc
5471 - Changed filling of evt1 and evt2. Now they are filled with raw
5472 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
5473 still filled uncalibrated (hence in ADC counts), this means that
5474 what will be now shown in Mars' camera display is now the signal
5475 in each pixel without scaling with pixel area. Given that the
5476 default flat fielding is such that equal light density
5477 corresponds to equal absolute signal (in ADC counts), this is
5478 more reasonable, and allows to check for instance how the
5479 relative pixel gains are adjusted by looking at calibration
5480 events. To be FIXED: there is however an "inconsistency" in
5481 MEventDisplay, and it is that MCerPhotEvt is still used to keep
5482 uncalibrated signals. To be replaced by MExtractedSignalCam?
5483
5484
5485
5486 2004/02/19: Thomas Bretz
5487
5488 * manalysis/MCerPhotEvt.h:
5489 - added operator= to MCerPhotEvtIter -- is this correct?
5490
5491 * mhist/MHCamera.[h,cc]:
5492 - added member function to calculate minimum content and
5493 maximum content for a single sector
5494 - Added possibility to get a projection for a single sector.
5495 - GetMinimum/GetMaximum now only takes used pixels into account
5496 (you can request all pixels using a different member function)
5497 - fixed projection (projection only took pixels with contents!=0
5498 instead of 'used' pixels
5499 - Don't call Sumw2() anymore for projection
5500
5501 * mjobs/MJPedestal.cc:
5502 - added MPedestalCam to output again - MPedestalCam was fixed
5503 yesterday
5504 - Added Histograms for the two camera halves
5505
5506
5507
5508 2004/02/18: Markus Gaug
5509
5510 * macros/calibration.C
5511 - fixed a buggy display of the F-Factor method
5512
5513 * mcalib/MCalibrationCalc.cc
5514 - calculate the F-Factor method already in the post-Process
5515
5516 * mcalib/MCalibrationPix.h
5517 - move CalcFFactorMethod to public
5518
5519
5520
5521 2004/02/18: Abelardo Moralejo
5522
5523 * mtools/MCubicSpline.cc
5524 - in Init, corrected initialization of arrays temp and ysd, which
5525 was done with n-1 elements instead of n.
5526
5527 * mgui/MHexagon.cc
5528 - added comment explaining the algorithm.
5529 - changed explicit values of Sin and Cos 60 degrees by const
5530 variables (more readable).
5531
5532
5533
5534 2004/02/18: Hendrik Bartko
5535
5536 * msignal/:
5537 - removed the backup files *~
5538 - removed the object files *.o
5539 - removed the files SignalCint.*
5540
5541 * mgui/MHexagon.cc
5542 - added comment explaining the algorithm.
5543
5544
5545
5546 2004/02/18: Thomas Bretz
5547
5548 * manalysis/MPedestalCam.[h,cc]:
5549 - Changed order of derivements - seems to be VERY important!
5550 - changed GetSize from UInt_t to Int_t which is the type
5551 of TClonesArray::GetSize() !
5552
5553 * mfileio/MReadReports.cc:
5554 - skip trees with no entries
5555
5556 * mgui/MCamEvent.cc:
5557 - added a comment
5558
5559 * mhbase/MFillH.cc:
5560 - in case SetupFill returns kFALSE and kCanSkip is set
5561 Skip task
5562
5563 * mraw/MRawFileRead.cc:
5564 - don't print warning in case of none executions
5565
5566 * manalysis/MArrivalTimeCalc2.cc:
5567 - added some const-qualifiers
5568
5569
5570
5571 2004/02/17: Raquel de los Reyes
5572
5573 * macros/CCDataCheck.C
5574 - Added some improvements in the plots.
5575
5576
5577
5578 2004/02/17: Abelardo Moralejo
5579
5580 * macros/readrfl.C
5581 - Added missing gPad->cd(1), otherwise the display of events was
5582 not updated.
5583
5584 * mgui/MHexagon.cc
5585 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
5586 whether px,py is inside the pixel or not. Previous algorithm
5587 was just an approximation.
5588
5589
5590
5591 2004/02/17: Raquel de los Reyes
5592
5593 * mcamera/MCameraHV.h
5594 - Now it derives from a MCamEvent class and implemented the
5595 GetPixContent() and DrawPixelContent() functions. Added the
5596 GetMean function to get the mean HV settings of the camera.
5597
5598 * macros/CCDataCheck.C
5599 - Added the HV settings plots.
5600
5601
5602
5603 2004/02/17: Hendrik Bartko
5604
5605 * msignal:
5606 - new: directory for all signal and time extraction classes
5607
5608 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
5609 msignal/AnalysisLinkDef.h, MGeomApply.cc:
5610 - new: Storage Container for the ArrivalTime in the camera
5611
5612 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
5613 msignal/AnalysisLinkDef.h:
5614 - new: Storage Container for ArrivalTime information of one pixel
5615
5616 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
5617 SignalLinkDef.h
5618 - auxiliary files for msignal directory
5619
5620 * manalysis/MArrivalTimeCalc2.[h,cc]:
5621 - added functionality to compute error of the extracted ArrivalTime
5622 - calculated ArrivalTime is stored in MArrivalTimeCam
5623
5624 * manalysis/MGeomApply.cc
5625 - geometry is applied to MArrivalTimeCam
5626
5627 * Makefile:
5628 - directory msignal is included
5629
5630
5631
5632 2004/02/17: Sebastian Raducci
5633
5634 * mtools/MCubicSpline.[h,cc]
5635 - little corrections in minimums evalustion methods
5636 - changed constructors (they require the fadc slices to be const)
5637
5638 * macros/spline.C
5639 - changed according to the MCubicSpline new constructors
5640
5641 * manalysis/MArrivalTimeCalc.[h,cc]
5642 - changed to use the MCubicSpline class intead of the TSpline class
5643 - warning: now the arrival time is again the maximum of the spline,
5644 soon it will be changed to half maximum
5645
5646
5647
5648 2004/02/17: Wolfgang Wittek
5649
5650 * manalysis/MSourcPosfromStarPos.[h,cc]
5651 - new class; calculates the position of the source in the camera from
5652 the position of a star in the camera and puts it into
5653 MSrcPosCam
5654
5655
5656
5657 2004/02/16: Abelardo Moralejo
5658
5659 * mcalib/MMcCalibrationCalc.cc
5660 - Fixed two typos in screen output.
5661
5662
5663
5664 2004/02/16: Markus Gaug
5665
5666 * mcalib/MCalibrationPix.cc
5667 - documentation from David's email added
5668 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
5669
5670 * mcalib/Makefile, mcalib/CalibLinkDef.h:
5671 - added MExtractBlindPixel and MExtractedSignalBlindPixel
5672
5673 * mcalib/MExtractBlindPixel.[h,cc]
5674 - new signal extractor for the Blind Pixel
5675
5676 * mcalib/MExtractedSignalBlindPixel.[h,cc]
5677 - new container for the extracted signal of the BlindPixel
5678
5679 * mcalib/MCalibrationCalc.[h,cc]
5680 - does not extract signal from Blind Pixel any more, searches
5681 for MExtractedSignalBlindPixel and fills the hists from there
5682
5683 * macros/calibration.C, macros/bootcampstandardanalysis.C,
5684 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
5685 - introduce the blind pixel and PIN diode extraction in the macro
5686
5687 * manalysis/MPedestalCam.h
5688 - changed type of fTotalEntries from ULong_t to UInt_t
5689 - fixed documentation of fTotalEntries
5690
5691 * manalysis/MPedCalcPedRun.h
5692 - changed type of fNumSamplesTot from ULong_t to UInt_t
5693
5694 * mcalib/MHGausEvents.h
5695 - changed type of fCurrentSize from ULong_t to UInt_t
5696
5697 * mcalib/MCalibrationConfig.h
5698 - removed gkConversionHiLo and gkConversionHiLoErr which is now
5699 directly in the class MCalibrationPix
5700
5701
5702
5703 2004/02/16: Thomas Bretz
5704
5705 * manalysis/AnalysisLinkDef.h:
5706 - added missing MCerPhotEvtIter
5707
5708 * merpp.cc:
5709 - added possible usage of database
5710
5711 * star.cc:
5712 - moved source code into new class MJStar - preliminary
5713
5714 * manalysis/MCerPhotPix.cc:
5715 - updated class header
5716 - fixed Print-output
5717
5718 * mbase/MAGIC.h:
5719 - removed definition of MLog
5720
5721 * mbase/MArgs.h:
5722 - removed include of MAGIC.h
5723
5724 * mbase/MLog.h:
5725 - added extern definition of gLog
5726
5727 * mbase/MParContainer.[h,cc]:
5728 - move body of constructors to source file
5729
5730 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
5731 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
5732 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
5733 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
5734 - fixed documentation header
5735
5736 * mcalib/MMcCalibrationCalc.[h,cc]:
5737 - fixed documentation header
5738 - fixed usage of FindCreateObj and FindObject
5739 - removed data member to count entries (use histogram instead)
5740 - use TH1 function Integral instead of doing it manually
5741
5742 * mfilter/MFCosmics.cc:
5743 - fixed documentation
5744
5745 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
5746 mimage/MNewImagePar.[h,cc]:
5747 - replaced for-loops by Iterators
5748
5749 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
5750 - fixed documentation header
5751 - check return value of MRawRunHeader::ReadEvt
5752
5753 * mraw/mraw/MRawRunHeader.[h,cc]:
5754 - fixed documentation header
5755 - added return value to MRawRunHeader::ReadEvt
5756 - added constant number for max format version - preliminary
5757 (should by a static data member)
5758
5759 * mcalib/MHCalibrationPINDiode.cc:
5760 - do not delete pointers in the destructor which are already
5761 deleted in the base class
5762 - reset histograms in Clear()
5763
5764 * mcalib/MHCalibrationPixel.cc:
5765 - after deletion of instances in Clear() initialize pointer to NULL
5766
5767 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
5768 - fixed usage of logging stream output levels
5769
5770 * manalysis/MPedCalcPedRun.[h,cc]:
5771 - removed obsolete fSignals
5772
5773 - removed obsolete fNumPixels
5774
5775 * manalysis/MPedestalCam.h:
5776 - added '->' to fArray
5777
5778 * mfileio/MWriteRootFile.cc:
5779 - changed some output to make debugging easier
5780
5781 * mjobs/MJCalibration.cc:
5782 - fixed a bug in drawing
5783
5784 * mjobs/MJExtractSignal.cc:
5785 - removed MPedestalCam from MWriteRootFile output.
5786 When creating the branch it crashes - reason unknown I'll
5787 investigate further
5788
5789
5790
5791 2004/02/16: Markus Gaug
5792
5793 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
5794 - added MHCalibrationRelTimePix
5795
5796 * mcalib/MHCalibrationRelTimePix.[h,cc],
5797 mcalib/MHCalibrationRelTimeCam.[h,cc]:
5798 - new classes to fit and display the relative arrival times.
5799 - filled from MArrivalTime
5800 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
5801
5802 * manalysis/MCalibrationCalc.cc
5803 - take out all uncommented code referring to the relative arrival time
5804
5805 * manalysis/MArrivalTime.h
5806 - changed function GetNumPixels to GetSize
5807
5808 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
5809 - included cosmics rejection which was in MCalibrationCalc before
5810
5811
5812
5813 2004/02/14: Markus Gaug
5814
5815 * mcalib/Makefile, mcalib/CalibLinkDef.h:
5816 - added MHCalibrationChargePINDiode
5817
5818 * mcalib/MHCalibrationChargePINDiode.[h,cc]
5819 - new class to fill the PIN Diode histograms. Derives from
5820 MHCalibrationChargePix and is filled with MFillH from the
5821 container MExtractedSignalPINDiode.
5822 Will replace MHCalibrationPINDiode entirely soon.
5823
5824 * mcalib/MHCalibrationChargePix.[h,cc]
5825 - new base class for the calibration charges histogram pixel.
5826 Derives from MH and can be filled with the MH with the MH
5827 functions.
5828
5829 * mcalib/MExtractPINDiode.[h,cc]
5830 - new signal extractor for the PIN Diode
5831
5832 * mcalib/MExtractedSignalPINDiode.[h,cc]
5833 - new container for the extracted signal of the PIN Diode
5834
5835 * mcalib/MCalibrationCalc.[h,cc]
5836 - remove the PIN Diode signal extraction
5837
5838 * manalysis/MHPedestalPix.[h,cc]
5839 - new version of MHPedestalPixel, deriving from MHGausEvents.
5840
5841 * manalysis/MHPedestalPixel.[h,cc]
5842 - old version removed, since obsolete (and erroneous)
5843
5844 * manalysis/MHPedestalCam.[h,cc]
5845 - histogramming part of MPedestalCam now in own class
5846
5847 * manalysis/MPedestalPix.h
5848 - removed include of MHPedestalPixel
5849
5850 * macros/calibration.C
5851 - changed pedestal displays accordingly
5852
5853 * mjobs/MJPedestal.h
5854 - class TCanvas included (did not compile otherwise)
5855
5856 * mhbase/MH.cc
5857 - included call to FindGoodLimits(..) in CutEdges()
5858 - axe from pointer to reference
5859 - "CutEdges" renamed to "StripZeros"
5860
5861 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
5862 mcalib/MHCalibrationBlindPixel.cc:
5863 - "CutEdges" renamed to "StripZeros"
5864
5865 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
5866 - replaced by the improved version: MHGausEvents.[h,cc]
5867
5868
5869
5870 2004/02/14: Thomas Bretz
5871
5872 * manalysis/MCerPhotEvt.[h,cc]:
5873 - added 'Iterator' facility, this will replace some for-loops
5874 in the near future
5875
5876 * mbase/MTime.[h,cc]:
5877 - added a more powerfull interface to get and interprete the
5878 MTime contents as string
5879 - added a new constructor
5880
5881 * mreport/MReportTrigger.h:
5882 - fixed GetPixContent
5883
5884 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
5885 - many small changes to simple details (like order of includes)
5886 - some speed improvements
5887 - many small simplifications
5888 - changed parts of the code to be more C++ like (eg Iterators
5889 instead of for-loops)
5890 - disentangles some if-cases
5891 - replaced some math.h function by TMath::
5892 - removed data-member fN (obsolete with iterators)
5893
5894
5895
5896 2004/02/13: Wolfgang Wittek
5897
5898 * mcalib/MCalibrateData.[h,cc]
5899 - new class;
5900 like MCalibrate, but in ReInit it fills the MPedPhot container
5901 using informations from MPedestal, MExtracteSignalCam and
5902 MCalibrationCam
5903
5904 * mcalib/Makefile, mcalib/CalibLinkDef.h
5905 - added MCalibrateData
5906
5907 * manalysis/MPedestalWorkaround.[h,cc]
5908 - create MMcEvt container and fill with theta = 10.0
5909 - set pedestalRMS = 0. if it is > 10.0
5910
5911 * manalysis/MSupercuts.[h,cc]
5912 - change default values of parameters
5913
5914 * manalysis/MSupercutsCalc.[h,cc]
5915 - change dNOMLOGSIZE from 4.1 to 5.0
5916
5917 * mhist/MHBlindPixels.[h,cc]
5918 - change MPedestalCam to MPedPhotCam
5919
5920 * mhist/MHSigmaTheta.[h,cc]
5921 - automatic binning for pixel number doesn't work
5922 use default binning
5923
5924
5925
5926 2004/02/13: Markus Gaug
5927
5928 * mcalib/MCalibrationPix.[h,cc]
5929 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
5930 fAverageQEErr
5931 - gkAverageQE initializes to 0.2 (according to David)
5932 - gkAverageQEErr initializes to 0.02 (dito)
5933 - added new member function: SetAverageQE
5934 - call to GetMeanConversionFFactorMethod returns:
5935 fMeanConversionFFactorMethod/fAverageQE.
5936 - call to GetErrorConversionFFactorMethod returns:
5937 errors of fMeanConversionFFactorMethod and fAverageQEErr added
5938 quadratically
5939
5940 * mcalib/Makefile
5941 - split into two parts one comment line
5942
5943
5944 2004/02/13: Thomas Bretz
5945
5946 * mbadpixels/MBadPixelsTreat.[h.cc]:
5947 - added for new bad pixel treatment
5948
5949 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
5950 - added MBadPixelsTreat
5951
5952 * merpp.cc:
5953 - changed the name of the "DC" tree to "Currents" to make
5954 MReportRead work correctly with this tree
5955
5956 * mbase/MTime.[h,cc]:
5957 - Changed UpDMagicTime to support nanosec instead of millisec
5958 - exchanged Reset() by Clear() not to clear the yy/mm/dd
5959 information away in an eventloop
5960
5961 * mraw/MRawEvtHeader.[h,cc]:
5962 - implemented decoding of the time-stamp for raw-data files
5963 with version>2. Thanks to Marcos.
5964
5965 * mraw/MRawRead.[h,c]:
5966 - pipe file version number to MRawEvtHeader::ReadEvt
5967 - create fake time for file-version<3
5968
5969 * macros/readMagic.C:
5970 - changed to use MInteractiveTask
5971
5972 * mbase/MPrint.cc:
5973 - fixed debugging level of some output
5974
5975 * mhist/MHCamera.[h,cc]:
5976 - fixed handling in AddNotify (necessayr due to change of
5977 inheritance from MCamEvent)
5978 - replaced cout by gLog
5979 - added fNotify to list of cleanups
5980
5981 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
5982 mjobs/MJPedestal.cc:
5983 - fixed usage of AddNotify
5984
5985 * mfileio/MReadReports.cc:
5986 - use a different way to determin whether the tree is a valid tree,
5987 skip invalid trees
5988
5989 * mfileio/MReadTree.cc:
5990 - added another sanity check at the beginning of PreProcess
5991
5992 * mhbase/MFillH.[h,cc]:
5993 - added bit kCanSkip which skips MFillH in case the necessary container
5994 wasn't found.
5995 - cd into the corresponding canvas before filling the MH
5996
5997
5998
5999 2004/02/12: Markus Gaug
6000
6001 * mbase/MArray.[h,cc]:
6002 - changed name of StripZeros
6003
6004 * mcalib/MHGausEvent.cc:
6005 - corrected call to StripZeros
6006
6007 * mcalib/MCalibrationPix.[h,cc]
6008 - implemented dummy for combined method
6009
6010 * mcalib/MCalibrate.[h,cc]
6011 - implemented a dummy for calibration factor 1. (requested by
6012 Javier Rico)
6013 - implemented combined method
6014 - check for valid methods moved to ReInit
6015
6016 * mcalib/MCalibrationCalc.cc
6017 - removed initialization of non-used nsamples
6018
6019 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
6020 mcalib/MCalibrationCalc.[h,cc]
6021 macros/calibration.C
6022 - implemented new histograms:
6023 HSinglePheFADCSlices and HPedestalFADCSlices
6024 They are filled with the FADC slice values of either a s.phe.
6025 event or a pedestal event. The decision is taken with the
6026 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
6027 with a setter
6028
6029 * mtools/MFFT.[h,cc]
6030 - PowerSpectrumDensity of TArrayI implemented
6031
6032
6033
6034 2004/02/12: Thomas Bretz
6035
6036 * mbase/MArray.[h,cc]:
6037 - changed argument of CutEdges from pointer to reference
6038
6039 * mgeom/MGeomPix.h:
6040 - fixed calculation of area of pixel. It was too big for a
6041 factor of 2
6042
6043 * mjobs/MJCalibration.cc:
6044 - slight change of name of a MHCamera
6045
6046 * manalysis/MExtractSignal.cc:
6047 - slight change to the creation of the satpixels list
6048
6049 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
6050 mcalib/MHGausEvent.cc:
6051 - corrected call to ProjectArray
6052 - corrected call to CutEdges
6053
6054 * mfilter/MFCosmics.[h,cc]:
6055 - small fixes to logging output
6056 - small simplification to return statement
6057 - declared CosmicsRejection const
6058
6059 * mhbase/MH.[h,cc]:
6060 - changed argument of ProjectArray from pointer to reference
6061 - added missing calcualtion of minimum
6062 - removed obsolete SetEntries
6063 - changed SetDirectory from NULL to gROOT
6064
6065
6066
6067 2004/02/12: Javier L�ez
6068
6069 * macros/pointspreadfunction.C
6070 - added new macro that fits with a 2D gaussian the DC spot for an
6071 star. It gives you the RMS of the PSF and the center of the star,
6072 very useful for misspointing studies.
6073
6074
6075
6076 2004/02/11: Hendrik Bartko
6077
6078 * manalysis/MExtractSignal2.cc:
6079 - introduced a validity check for the set-function of the window
6080 size (even number of slices, WindowSize < NumberSlices)
6081
6082 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
6083 manalysis/AnalysisLinkDef.h:
6084 - new: introduced the calculation of the arrival time as the signal
6085 weighted mean of the time slices in the maximum window
6086
6087
6088
6089 2004/02/11: Markus Gaug
6090
6091 * mcalib/MCalibrationCalc.cc:
6092 - the blind pixel signal extractor introduced one week ago, counted
6093 one FADC slice too little, thus the normalization w.r.t. pedestals
6094 was wrong. Now corrected.
6095
6096 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
6097 - when "WARNING - Lo Gain saturated" occurs, display also the
6098 corr. pixel numbers.
6099
6100 * mbase/MArray.[h,cc]:
6101 - introduced function to cut array edges with zeros.
6102 (Thomas, should we keep it there or move it to another class? )
6103
6104 * mcalib/MCalibrationCalc.[h,cc]:
6105 - new function SetBlindPixelRange to set start and end of FADC slices
6106 used for the blind pixel signal extraction.
6107 - remove fEvents which are not necessary any more after the shift
6108 to MFCosmics.
6109
6110 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
6111 - show the fourier spectrum now with axes in frequency [Hz] instead
6112 of inverted events.
6113
6114 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
6115 - new base class for all kind of events with variables having a
6116 Gaussian distribution. Will serve as base class for the
6117 existing and new calibration histogram classes.
6118
6119
6120
6121 2004/02/11: Abelardo Moralejo
6122
6123 * mmain/MEventDisplay.cc
6124 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
6125 MMcPedestalCopy must be executed earlier!
6126
6127
6128
6129 2004/02/10: Raquel de los Reyes
6130
6131 * mhist/MHPixVsTime.[h,cc]:
6132 - Added a default draw function and replaced the TGraph object
6133 by a pointer to a TGraph object.
6134
6135 * mreport/MReportTrigger.h:
6136 - Now it dereives from a MCamEvent class and implemented the
6137 GetPixContent() and DrawPixelContent() functions.
6138
6139 * maccros/CCDataCheck.C:
6140 - An update of the previous macro. New plots: subsystems status and
6141 macrocells trigger.
6142
6143
6144
6145 2004/02/10: Markus Gaug
6146
6147 * mcalib/MCalibrationCam.cc:
6148 - fixed documentation
6149
6150 * mhbase/MH.[h,cc]:
6151 - new function ProjectArray
6152
6153 * mcalib/MHCalibrationPixel.[h,cc],
6154 mcalib/MHCalibrationBlindPixel.[h,cc]:
6155 - use ProjectArray from MH to plot the projection of the fourier
6156 spectrum
6157
6158 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
6159 mfilter/FilterLinkDef.h:
6160 - new filter removing cosmics, the same as in MCalibrationCalc
6161 where it was removed now.
6162 Call: MFCosmics cosmics;
6163 MContinue cont(&cosmics);
6164 tlist.AddToList(&cont);
6165
6166 * mcalib/MCalibrationCalc.[h,cc]:
6167 - removed cosmics rejection from there
6168
6169 * macros/calibration.C, mjobs/MJCalibration.cc:
6170 - changed cosmics rejection to the filter algorithm
6171
6172
6173
6174 2004/02/09: Markus Gaug
6175
6176 * mcalib/MCalibrationBlindPix.[h,cc]:
6177 - added histogram to display the average in FADC slices of all
6178 single and double phe events
6179
6180 * mcalib/MCalibrationCalc.cc:
6181 - fill histograms of single-phe events with higain and logain
6182 sampls
6183
6184 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
6185 mcalib/MCalibrationConfig.h:
6186 - take all pixel areas out of MGeomPix::GetA(), remove all previous
6187 areas
6188 - calculate photon fluxes from blind pixel and PIN diode, use
6189 area only to fill the conversion factors in MCalibrationPix
6190
6191
6192 * mcalib/MJCalibration.cc:
6193 - display of number of photons for Blindpixel and PIN Diode Method
6194 changed to display of photon flux which is the actually
6195 calculated quantity
6196
6197
6198
6199 2004/02/09: Thomas Bretz
6200
6201 * mbadpixels/*:
6202 - added
6203
6204 * Makefile:
6205 - added MBadPixels
6206
6207 * manalysis/MGeomApply.cc:
6208 - fixed class description
6209
6210 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
6211 - added bad pixel treatment
6212
6213 * mjobs/MJPedestal.[h,cc]:
6214 - reorganized order of functions
6215 - removed a nonsense scrren output (some BLABABLA or so)
6216
6217 * mjobs/Makefile:
6218 - added include for mbadpixels
6219
6220 * mmain/MBrowser.cc:
6221 - do not call construtor of TGTReeLBEntry if pic0=0
6222
6223
6224
6225 2004/02/09: Raquel de los Reyes
6226
6227 * mcamera/MCameraLids.h, mreport/MReportCamera.h
6228 - Added the "Get" functions to access the private data
6229 members of the class.
6230
6231
6232
6233 2004/02/09: Markus Gaug
6234
6235 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
6236 MCalibrationPix.h:
6237 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
6238 because we can calibrate with the histogram mean and RMS even
6239 if the fit is not OK. Thus, there is a question: IsFitted() and
6240 IsChargeValid(), i.e. does the charge make any sense?
6241
6242 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
6243 - found serious bug in calculation of conversion factors for the
6244 outer pixels:
6245 GetMeanConversionBlindPixelMethod and
6246 GetMeanConversionPINDiodeMethod
6247 did not correct for the area of the outer pixel, this did only
6248 MCalibrationCam::GetPixelContent which is not used by MCalibrate
6249
6250
6251
6252 2004/02/06: Markus Gaug
6253
6254 * mgeom/MGeomCam.h
6255 - replaced in Comment of fPixRatio:
6256 "ratio between size of pixel idx and pixel 0" by
6257 "ratio between size of pixel 0 and pixel idx"
6258
6259 * manalysis/MPedestalCam.cc
6260 - catch calls to MHPedestalPixel in case that they are not filled
6261 This led previous calls to segmentation violations
6262 - remove include of MHExtractedSignalPix
6263
6264 * manalysis/MHExtractedSignalPix.[h,cc]
6265 - is everything in MHPedestalPixel, so removed it again
6266
6267 * mjobs/MJPedestal.cc
6268 - put the projections into Display()
6269 - correct the input of Display (0: pedestal, 1: pedestalerror,
6270 2: pedRMS, 3: pedRMSerror)
6271
6272 * manalysis/MHPedestalPixel.cc
6273 - increased number of bins in for charges plot
6274
6275 * mtools/MFFT.[h,cc]
6276 - possibility to have PSD directly from TArray
6277
6278 * mjobs/MJCalibration.[h,cc]
6279 - fixed displays
6280 - replaced MExtractSignal by MExtractSignal2
6281
6282 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
6283 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
6284 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
6285 - remove histograms MHChargevsN..., now keep TArrays directly
6286 - check for oscillations for all pixels (and you will not trust
6287 your eyes when you look at the results :-((((
6288
6289 * mcalib/MCalibrationCalc.[h,cc]
6290 - remove ArrivalTime -> go to separate class
6291 - remove BlindPixel and PIN Diode overflow, now handled directly
6292 inside the corr. classes.
6293 - remove SkipTimeFits -> go the arrival time class
6294
6295 * mcalib/MCalibrationCam.h
6296 - new getters for number of photons
6297 - removed timeslicewidth -> go the corr. time containers
6298
6299 * mcalib/MCalibrationCam.cc
6300 - removed times of GetPixelContent
6301 - added OscillationChecks in GetPixelContent
6302
6303 * manalysis/MMcCalibrationUpdate.cc
6304 - remove calpix.SkipTimeFits which is now obsolet
6305
6306 * macros/calibration.C
6307 - all previous changes now in this macro.
6308 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
6309 das ging diesmal in einem Aufwasch)
6310
6311
6312
6313 2004/02/06: Thomas Bretz
6314
6315 * mhist/MHPixVsTime.[h,cc]:
6316 - changed such that you can set the name of the time container now
6317
6318 * mraw/MRawRunHeader.[h,cc]:
6319 - added GetMaxPixId()
6320
6321 * mraw/MRawEvtData.cc:
6322 - fixed wrong size calculation for fABflags
6323
6324
6325
6326 2004/02/06: Oscar Blanch
6327
6328 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
6329 - We cahnged the name (and values) of the global variable
6330 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
6331
6332
6333
6334 2004/02/05: Markus Gaug
6335
6336 * mcalib/MHCalibrationPixel.[h,cc]
6337 - put an NDF limit for the fit
6338 - removed all TStrings and replace them by Form(..)
6339 - Check for nan's of all returned fit values
6340
6341 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
6342 - reshuffled HiLoGainConversion, calculation of F-Factor method,
6343 - calculation of total F-Factor of the readout.
6344
6345 * mcalib/MCalibrationCam.cc
6346 - include relative times to display with GetPixelContent
6347
6348 * mcalib/MCalibrationCalc.[h,cc]
6349 - flag to skip Hi-Lo Calibration
6350 - Hi-LO Graph not filled any more after overflow of ChargevsN
6351 - fill the blind pixel differently from the rest of pixels
6352
6353 * mcalib/MCalibrate.cc:
6354 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
6355
6356 * manalysis/MArrivalTimeCalc.cc
6357 - default step width 100 ps.
6358 - look for half maximum (at rising edge)
6359
6360 * manalysis/MExtractSignal.[h,cc]
6361 - removed uncommented code (arrival time)
6362 - set start byte back by one like it was before TB's changes
6363 (does not affect the calculation of number of FADC slices)
6364
6365 * manalysis/MExtractSignal2.[h,cc]
6366 - removed uncommented code (arrival time)
6367
6368 * manalysis/MHPedestalPixel.[h,cc]
6369 - is now filled with total pedestals (not per slice), but results are
6370 renormalized to values per slice (this is not to screw up with the
6371 pedestal RMS and the derived uncertainties)
6372 - new function Renorm(nslices)
6373
6374 * manalysis/MPedestalCam.[h,cc]
6375 - introduced function Clone() (like proposed by TB)
6376 - call to MHPedestalPixel operator() not const any more
6377 - take out lots of uncommented code
6378 - found bug in initialization of hists. SetupFill is called in
6379 PreProcess, therefore, TObjArray is not yet enlarged there.
6380 Now, InitUseHists is called in Fill
6381 - MHPedestalPixel is now filled with total pedestals (not per slice),
6382 but results are
6383 renormalized to values per slice (this is not to screw up with the
6384 pedestal RMS and the derived uncertainties)
6385
6386 * manalysis/MPedCalcPedRun.cc
6387 - added author
6388 - split calculation of RMS into two steps to make it more clear to
6389 the user
6390
6391 * macros/calibration.C
6392 - found bug introduced two days ago, namely calculating pedestlas with
6393 MExtractSignal2 which is now fixed
6394 - Skip HiLoConversionCalibration
6395
6396
6397
6398 2004/02/05: Abelardo Moralejo
6399
6400 * macros/starmc2.C
6401 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
6402 for both MMcEvt and MMcRunHeader since these containers are
6403 not present in real data. Name of macro is no longer adequate if
6404 we will use it for calibrated real data (to be changed if so).
6405
6406
6407
6408 2004/02/05: Sebastian Raducci
6409
6410 * mtools/MCubicSpline.[h,cc]
6411 - added
6412 - this class will take the place of the TSpline class to
6413 calculate arrival times
6414
6415 * mtools/MCubicCoeff.[h,cc]
6416 - added
6417 - this class is used by MCubicSpline to store coefficients
6418
6419 * macros/spline.C
6420 - added
6421 - test macro. Shows how to use the MCubicSpline class
6422 - it could be used to test the methods of the Spline class
6423
6424
6425
6426 2004/02/05: Thomas Bretz
6427
6428 * mmain/MBrowser.cc:
6429 - fixed a double deletion of a TGLayoutHints
6430
6431
6432
6433 2004/02/04: Markus Gaug
6434
6435 * mmain/MBrowser.cc:
6436 - corrected TGTReeLBEntry for TGTreeLBEntry
6437
6438
6439
6440 2004/02/04: Thomas Bretz
6441
6442 * manalysis/MExtractSignal2.cc:
6443 - don't allow odd numbers for the window size
6444
6445 * mfilter/MFilterList.cc:
6446 - corrected a wrong logging message
6447
6448 * mmain/MBrowser.cc:
6449 - added '/data/MAGIC' as shortcut in the combo box
6450
6451 * mraw/MRawEvtPixelIter.cc:
6452 - optimized calculation of MaxIdx
6453
6454
6455
6456 2004/02/04: Abelardo Moralejo
6457
6458 * macros/starmc2.C
6459 - removed unnecessary variables BinsHigh, BinsLow
6460
6461
6462
6463 2004/02/04: Markus Gaug
6464
6465 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
6466 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
6467 macros/calibration.C:
6468 - histograms are now filled with MFillH as proposed and coded by
6469 Thomas Bretz. Some modifications had to be done, however.
6470 - Class to hold MHPedestalPixel is still MPedestalCam
6471 - MPedCalcPedRun does nothing any more (except from what is was
6472 doing before)
6473
6474 * manalysis/MExtractSignal.cc
6475 - remove uncommented code
6476
6477 * mcalib/MCalibrationCalc.[h,cc]
6478 - modified way to handle histogram overflow: Now flags are set and
6479 ChargevsN histogram is not tried to be filled subsequently
6480
6481
6482
6483 2004/02/03: Markus Gaug
6484
6485 * manalysis/MHExtractedSignalPix.[h,cc]
6486 - added Thomas B. modified version of MHPedestalPixel. Later will
6487 remove MHPedestalPixel
6488
6489 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
6490 manalysis/MCalibrationCam.cc, macros/calibration.C:
6491 - now split completely absolute and relative times. Absolute
6492 times are not fitted, but their histogram mean and rms are
6493 returned.
6494
6495
6496
6497 2004/02/03: Thomas Bretz
6498
6499 * mfileio/MReadTree.cc:
6500 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
6501
6502 * manalysis/MExtractSignal.[h,cc]:
6503 - moved code to extract the signal from Process to
6504 new member function FindSignal, I left the arrival time
6505 extraction as commented-out code in the code just as a
6506 demonstration to do this very fast.
6507
6508
6509
6510 2004/02/02: Markus Gaug
6511
6512 * manalysis/MPedCalcPedRun.cc
6513 - corrected formulae in Class description
6514
6515 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
6516 manalysis/MMcCalibrationUpdate.cc:
6517 - calculate relative times and absolute times. Fit only
6518 the relative ones.
6519
6520
6521
6522 2004/02/02: Abelardo Moralejo
6523
6524 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
6525 - removed file type check (MC or data) from PreProcess since now
6526 run headers are not yet known at that point.
6527
6528 * mcalib/MMcCalibrationCalc.cc
6529 - same as above.
6530
6531 * NEWS
6532 - updated.
6533
6534
6535
6536 2004/02/02: Thomas Bretz
6537
6538 * manalysis/MExtractSignal2.[h,cc]:
6539 - added new task which takes a given number of slices with the
6540 highest integral content as signal.
6541
6542 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
6543 - added MExtractSignal2
6544
6545
6546
6547 2004/01/30: Abelardo Moralejo
6548
6549 * macros/starmc.C
6550 - changed default FADC integration range (more adequate for coming
6551 camera version).
6552
6553 * macros/mccalibrate.C, starmc2.C
6554 - added. First macro transforms input files from camera simulation
6555 into files with pixel data already calibrated in photons. The
6556 second reads in an already calibrated data file and produces an
6557 output file with Hillas parameters. Both together do the same as
6558 starmc.C, but it is convenient to have files containing
6559 calibrated pixel information.
6560
6561
6562
6563 2004/01/30: Thomas Bretz
6564
6565 * mbase/MDirIter.h:
6566 - added GetNumEntries
6567
6568 * mhist/MHEvent.cc:
6569 - added a dynamic_cast from MParContainer to MCamEvent to get the
6570 correct pointer to the correct base-class.
6571
6572 * mbase/MStatusDisplay.cc:
6573 - In EventInfo check whether gPad==0
6574
6575 * mfileio/MReadMarsFile.cc:
6576 - removed reading RunHeaders from PreProcess, this resulted
6577 in strange behaviour of writing RunHeaders
6578 - fixed consistency check for RunType accordingly
6579
6580 * mfilter/MFilterList.cc:
6581 - do not skip adding filter if only a filter with the same name
6582 exists
6583
6584 * mraw/MRawFileRead.cc:
6585 - added an output message if run header is not accessible
6586
6587 * mraw/MRawRunHeader.[h,cc]:
6588 - initialize fRunType to new enum kRTNone
6589
6590 * mfilter/MFGeomag.cc:
6591 - set fResult to kFALSE at the beginning of Process
6592 - according to this removed setting fResult=kFALSE before return
6593 - replaced some float by Float_t
6594 - added some const-qualifiers
6595 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
6596 with rnd = R * (r2-r1)/2 to make sure that we cannot
6597 devide by 0
6598
6599 * manalysis/MPedCalcPedRun.cc:
6600 - added some comments
6601
6602 * Makefile:
6603 - added mjobs
6604
6605 * mjobs/*:
6606 - added
6607
6608 * mbase/Makefile, mbase/BaseLinkDef.h:
6609 - added MRunIter
6610
6611 * mbase/MRunIter.[h,cc]:
6612 - added
6613
6614
6615
6616 2004/01/30: Markus Gaug
6617
6618 * manalysis/MPedestalCam.h
6619 - added function IsUsedHists()
6620
6621 * manalysis/MPedestalCam.cc
6622 - modified GetPixelContent
6623
6624 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
6625 - include storage of number of used FADC slices to compare later
6626 the pedestal per slice ( and sigma per slice)
6627 - return relative differences in GetPixelContent
6628
6629 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
6630 - fBlindPixelId and fPINDiodeId now like in PedestalCam
6631 - fill Blind Pixel with information about its fitted pedestal if
6632 available
6633 - initialize charges histogram with a bigger range
6634 - use pedestal information to constrain the pedestal fit ranges
6635
6636 * manalysis/MHPedestalPixel.cc
6637 - initialize charges histogram with a bigger range
6638
6639 * macros/calibration.C
6640 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
6641 - apply new GetPixelContents of MPedestalCam (more calculations
6642 and displays of errors, correction for different FADC slice
6643 number)
6644
6645 * manalysis/MExtractSignal.cc
6646 - not access to MArrivalTime any more. The same information is
6647 stored in MRawEvt->GetPixelContent(...)
6648
6649 * manalysis/MCalibrationCalc.cc
6650 - retrieve default arrival time from MRawEvt
6651
6652 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
6653 - check for NaN's in fit results
6654
6655
6656
6657 2004/01/29: Abelardo Moralejo
6658
6659 * mfileio/MWriteFile.h
6660 - added missing declaration of ReInit
6661
6662 * manalysis/MMcCalibrationUpdate.cc
6663 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
6664 to adapt to recent changes in MCalibrate.
6665
6666
6667
6668 2004/01/29: Thomas Bretz
6669
6670 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
6671 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
6672 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
6673 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
6674 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
6675 - split derivement into MParContainer and MCamEvent
6676
6677 * manalysis/MExtractSignalCam.[h,cc]:
6678 - removed obsolete MExtractSignal::ReInit
6679 - added -> to fArray
6680
6681 * mbase/MParList.h:
6682 - added a new bit kIsProcessing
6683
6684 * mbase/MTaskList.cc:
6685 - fixed the handling of kDoNotReset and the bahaviour of
6686 SetReadyToSave, such that it is possible to write all
6687 headers
6688
6689 * mfileio/MWriteFile.cc:
6690 - added ReInit which also calls CheckAndWrite
6691
6692 * mgui/MCamEvent.h:
6693 - does not derive from MParContainer anymore
6694
6695
6696
6697 2004/01/29: Markus Gaug
6698
6699 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
6700 mcalib/MCalibrationConfig.h
6701 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
6702 directly into the corresponding classes.
6703
6704
6705
6706 2004/01/29: Nicola Galante
6707
6708 * mhistmc/MHMcTriggerLvl2.[h,cc]:
6709 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
6710 added string checking to return also
6711 fHistCellPseudoSize, fHistCellPseudoSizeNorm
6712 and fHistCellPseudoSizeEnergy.
6713 - Added inline functions GetHistCellPseudoSize() and
6714 GetHistCellPseudoSizeNorm().
6715
6716
6717
6718 2004/01/28: Javier Rico
6719
6720 * mcalib/MCalibrate.[h.cc]
6721 - include possibility to select the calibration method to be used
6722
6723
6724
6725 2004/01/28: Markus Gaug
6726
6727 * mcalib/MCalibrate.[h.cc]
6728 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
6729
6730 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
6731 - included flags to indicate if Blind Pixel Method or PIn Diode
6732 method was OK. Up to now, program stopped, if one of the two
6733 methods was chosen but not able to being executed.
6734
6735 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
6736 manalysis/MGeomApply.cc:
6737 - put all missing InitSize(npixels) into MGeomApply
6738
6739 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
6740 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
6741 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
6742 - include possibility to fit the pedestals with Gaussian.
6743 - old methods are not affected.
6744 - add new method with MPedCalcPedRun::SetUseHists()
6745
6746
6747
6748 2004/01/28: Abelardo Moralejo
6749
6750 * mcalib/MMcCalibration.cc
6751 - fixed wrong variable type in call to TH1F constructor (number of
6752 bins is now integer), which resulted in a compilation warning.
6753
6754
6755
6756 2004/01/28: Thomas Bretz
6757
6758 * manalysis/MPedestalCam.cc:
6759 - removed unwanted CheckBound from operators. CheckBounds is ONLY
6760 ment for really old MC files and will be removed in the future
6761 anyhow.
6762
6763 * mcalib/MHCalibrationPixel.h:
6764 - removed obsolete include of MFFT
6765
6766 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
6767 manalysis/MPedestalCam.[h,cc]:
6768 - removed use of obsolete MPedestalCam::CheckBounds. This was
6769 a workaround for a 'bug' in very old camera files, which is not
6770 necessary anymore.
6771
6772 * manalysis/MCerPhotAnal2.[h,cc]:
6773 - replaced MPedestalCam by MPedPhotCam
6774
6775 * manalysis/MExtractSignal.cc:
6776 - some small simplification to the signal extraction
6777 - removed some obsolete variables
6778 - replaced for by while
6779 - removed obsolete casts
6780
6781 * mmain/MEventDisplay.cc:
6782 - gave names to the filters
6783 - removed adding MHCamera to fList because it was deleted twice
6784
6785 * mhist/MHCamera.cc:
6786 - fixed usage of fPainter in Paint() - title was not updated
6787 correctly
6788
6789
6790
6791 2004/01/28: Sebastian Raducci
6792
6793 * manalysis/MArrivalTime.[h,cc]:
6794 - removed all the code relative to the cluster evaluation
6795
6796
6797
6798 2004/01/27: Markus Gaug
6799
6800 * manalysis/MPedestalPix.cc:
6801 - initialize default values to 0 instead of -1.
6802
6803 * manalysis/MPedestalCam.[h,cc]:
6804 - include CheckBounds, also in operator[]
6805
6806 * mcalib/MCalibrationCam.[h,cc]:
6807 - apparently, there was a reference to InitSize(UInt_t i) instead
6808 of InitSize(Int_t i), where compiler complained, now changed
6809
6810 * mcalib/MHCalibration*, mcalib/MCalibration*:
6811 - fixed all Clear()'s, Reset()'s, direct intializers
6812
6813
6814
6815 2004/01/27: Thomas Bretz
6816
6817 * mdata/MDataChain.cc:
6818 - added '%' to supported operators
6819
6820
6821
6822 2004/01/26: Nicola Galante
6823
6824 * manalysis/MMcTriggerLvl2.[cc,h]:
6825
6826 - Defined some static constants to avoid ugly "magic numbers"
6827 in arrays: gsNCells, gsNTrigPixels,
6828 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
6829 - Added method
6830 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
6831 which computes compact pixels into a given L2T macrocell.
6832 - Added method
6833 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
6834 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
6835 macrocells
6836 - Added method
6837 MMcTriggerLvl2::GetCellPseudoSize() const
6838 which returns fCellPseudoSize
6839 - Added method
6840 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
6841 which controls whether a pixel belongs to a given L2T cell.
6842 - Added method
6843 MMcTriggerLvl2::GetMaxCell() const
6844 which returns fMaxCell, the cell with the maximum
6845 fCellPseudoSize.
6846
6847
6848
6849 2004/01/26: Markus Gaug, Michele Doro
6850
6851 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
6852 - moved calculation of arrival time from MArrivalTime to
6853 MArrivalTimeCalc. MArrivalTime does not do any Process-job
6854 anymore
6855 - TSpline5 now on stack.
6856 - function to set the stepsize
6857
6858 * mcalib/MHCalibrationBlindPixel.[h,cc]:
6859 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
6860 - implement combined Polya fit and Michele's back-scattered electron
6861 fit
6862
6863 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
6864 mcalib/MCalibrationPINDiode.cc:
6865 - combine FitChargeHiGain and FitChargeLoGain into one function
6866
6867 * macros/calibration.C
6868 - improve double gauss fit a bit
6869
6870
6871
6872 2004/01/26: Thomas Bretz
6873
6874 * mraw/MRawEvtPixelIter.[h,cc]:
6875 - removed member function GetNumPixels. For more details see mantis.
6876
6877 * manalysis/MArrivalTime.[h,cc]:
6878 - reorganized includes
6879 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
6880 definition
6881 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
6882 PROGRAM
6883
6884 * manalysis/MArrivalTimeCalc.[h,cc]:
6885 - reorganized includes
6886 - removed many obsolete code, exspecially copy&paste relicts!
6887 - fixed usage of InitSize
6888 - removed CleanArray. Reset() is called automatically before Process()
6889
6890 * manalysis/MExtractedSignalCam.[h,cc]:
6891 - added SetLogStream
6892 - removed obsolete include MGeomCam
6893 - replaced PrintOut by Print
6894 - added const-qualifiers to all Getters
6895 - fixed documentation
6896
6897 * manalysis/MExtractedSignalPix.[h,cc]:
6898 - replaced PrintOut by Print
6899 - fixed documentation
6900
6901 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
6902 - replaced memset by Reset()
6903
6904
6905
6906 2004/01/24: Abelardo Moralejo
6907
6908 * macros/starmcstereo.C
6909 - Added. Example of how to run the analysis chain for MC files
6910 containing simulation of stereo systems of 2 telescopes.
6911
6912 * mcalib/MCalibrate.cc
6913 - Added check that value of signal from MExtractedSignalPix is not
6914 the default (error) value. In such a case, the signal in
6915 MCerPhotEvt is now set to 0. Before, all pixels got very high
6916 values in MCerPhotEvt in case the MRawEvtData object for the
6917 event was missing in the file. This happened in MC files, in
6918 which in some circumstances an event is written without the
6919 pixel information (for instance, when running stereo simulations
6920 the pixel data is missing for non-triggered telescopes, but the
6921 event headers are present).
6922
6923
6924
6925 2004/01/23: Markus Gaug
6926
6927 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
6928 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
6929 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
6930 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
6931 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
6932 - use MArrivalTime for Storage (or calculation) of time
6933 in MExtractSignal
6934 - pass from TH1I histos to TH1F for times
6935
6936 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
6937 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
6938 mcalib/MCalibrationCalc.[h,cc]:
6939 - clean up setters
6940 - pass to bit-fields for all flags
6941
6942 * mcalib/MCalibrationCam.cc
6943 - exclude Blind Pixel from Camera display
6944 - do not fill &val when return kFALSE
6945
6946 * macros/calibration.C
6947 - include functions to exclude the blind pixel,
6948 calculation of times and quality checks
6949
6950
6951
6952 2004/01/23: Abelardo Moralejo
6953
6954 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
6955 - Added support (using AddSerialNumber) for stereo MC files.
6956
6957
6958
6959 2004/01/23: Thomas Bretz
6960
6961 * mbase/MAstro.cc:
6962 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
6963
6964 * mreport/MReport*.[h,cc]:
6965 - changed all classes to return Int_t instead of Bool_t in
6966 InterpreteBody
6967 - changed MReportFileRead such, that a wrong line results in
6968 skipping the line instead of abort reading.
6969
6970 * manalysis/MExtractSignal.cc:
6971 - do not print information for each pixel - it's too much.
6972
6973 * mbase/MStatusDisplay.cc:
6974 - when reading a status display do not display tabs with
6975 the same name than one which is already existing.
6976
6977 * mcalib/MCalibrate.cc:
6978 - directly store pointer to pixel when setting saturation flag
6979
6980 * mcamera/MCameraDC.cc:
6981 - fixed some comments
6982
6983 * mhist/MHCamEvent.cc:
6984 - fixed a crash when no geometry was available
6985
6986 * mhist/MHCamera.[h,cc]:
6987 - removed obsolete member function SetPix
6988
6989 * mbase/MStatusDisplay.[h,cc]:
6990 - added EventInfo member function
6991 - implemented preliminary redirection of GetObjectInfo to
6992 StatusLine2 -> An own status line for this is missing
6993
6994 * manalysis/MExtractSignal.[h,cc]:
6995 - implemented StreamPrimitive
6996 - changed deafults to be static const data members
6997
6998 * manalysis/MGeomApply.[h,cc]:
6999 - implemented StreamPrimitive
7000
7001
7002
7003 2004/01/23: Abelardo Moralejo
7004
7005 * manalysis/MMcCalibrationUpdate.[h,cc]
7006 - Added check to guarantee that the FADC simulation parameters of
7007 all read files (those used for calibration and those analyzed)
7008 are the same.
7009 - Added missing support for analysis of stereo files.
7010
7011 * mcalib/MMcCalibrationCalc.cc
7012 - Removed obsolete FIXME comment.
7013 - Added missing support for analysis of stereo files.
7014
7015
7016 2004/01/23: Raquel de los Reyes
7017
7018 * macros/CCDataCheck.C
7019 - Added the temperature distribution of the optical links
7020 and the plots of the LV power supplies.
7021 * mcamera/MCameraLV.h
7022 - Added the "Get" functions to access the private data
7023 members of the class.
7024
7025
7026 2004/01/22: Abelardo Moralejo
7027
7028 * manalysis/MMcCalibrationUpdate.[h,cc]
7029 - Now ratio of high to low gain is taken from MCalibrationCam if
7030 it existed previously in the parameter list, instead of being
7031 read again from the MMcFadcHeader. Removed Setter function for
7032 fADC2PhInner, no longer necessary. Fixed error regarding the
7033 pedestal conversion to photons (did not read conversion factor
7034 from preexisting MCalibrationCam object).
7035
7036 * mcalib/MMcCalibrationCalc.cc
7037 - Changed parameters of the histogram, and also the quantity being
7038 histogrammed. Check that input data come from a noiseless camera
7039 file before proceeding to do the calibration. Introduced lower
7040 size in cut for calibration. Now rhe calibration constant is not
7041 calculated from the mean of photons/ADC counts, but from the peak
7042 of the histogram.
7043
7044 * macros/starmc.C
7045 - Introduced new scheme. Now there are two loops over two different
7046 sets of files. First loop calculates the calibration constants,
7047 second one does the analysis. Introduced comments. Now the
7048 histogram used in the light calibration is written to the output
7049 file.
7050
7051
7052
7053 2004/01/22: Thomas Bretz
7054
7055 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
7056 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
7057 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
7058 mcalib/MCalibrationBlindPixel.[h,cc],
7059 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
7060 mcalib/MHCalibrationBlindPixel.[h,cc],
7061 mcalib/MHCalibrationPINDiode.[h,cc]:
7062 - cleaned up includes
7063
7064
7065
7066 2004/01/22: Raquel de los Reyes
7067
7068 * macros/CCDataCheck.C
7069 - macro to check the data from the central control (.rep files).
7070
7071
7072
7073 2004/01/22: Markus Gaug
7074
7075 * macros/calibration.C
7076 - made MStatusDisplay 3 bit smaller
7077
7078 * manalysis/MExtractSignal.cc
7079 - put fSignals->SetUsedFADCSlices into PreProcess
7080
7081 * manalysis/MPedCalcPedRun.cc
7082 - calculate PedRMS as RMS of the sums, later renormalized to units
7083 of RMS/slice (eliminate the wrong effect of odd and even slices)
7084
7085 * mcalib/MCalibrationCalc.cc
7086 - if bit SkipBlindPixelFit is set, now number of photons outside
7087 plexiglass is not intended to be calculated any more (previous
7088 bug)
7089 - exclude excluded pixels in eventloop
7090
7091 * mcalib/MHCalibrationBlindPixel.[h,cc]
7092 - move functions to pointer again (otherwise, Clone will give
7093 strange results)
7094
7095
7096
7097 2004/01/21: Abelardo Moralejo
7098
7099 * mcalib/MMcCalibrationCalc.[h,cc]
7100 - Added. First version of the task intended to calculate the
7101 conversion factors from ADC counts to photons in the MC. It has
7102 a different aim than the recently renamed class
7103 "MMcCalibrationUpdate" (which takes care that the correct
7104 pedestals and conversion factors are supplied to each event, but
7105 does not really calculate anything).
7106
7107 * mcalib/Makefile, CalibLinkDef.h
7108 - Added new class MMcCalibrationCalc
7109
7110 * manalysis/MMcCalibrationUpdate.[h,cc]
7111 - Now the container MCalibrationCam is not created or modified if
7112 it is found that one such container already exists in the
7113 Parameter list (from a previous calibration).
7114
7115
7116
7117 2004/01/21: Thomas Bretz
7118
7119 * mraw/MRawRead.cc:
7120 - restore the fake time for all runs (current time stamp in
7121 the data seems to be toally nonsense)
7122
7123 * mraw/MRawEvtHeader.cc:
7124 - removed decoding of real time (current time stamp in the data
7125 seems to be toally nonsense)
7126
7127
7128
7129 2004/01/21: Abelardo Moralejo
7130
7131 * mmc/MMcEvt.hxx
7132 - Uncommented 6 Getter functions (those regarding the number of
7133 photons surviving the different stages of simulation).
7134
7135 * manalysis/MMcCalibrationUpdate.[h,cc]
7136 - Added (see below).
7137
7138 * manalysis/MMcCalibrationCalc.[h,cc]
7139 - Removed: changed name of this class to MMcCalibrationUpdate,
7140 which is more representative of what it really does. Moved
7141 the filling of the MCalibrationCam container from Process to
7142 ReInit, since it does not change on an event by event basis.
7143 Simplified PreProcess (MCalibrationCam was searched for twice).
7144 Updated class description and comments.
7145
7146 * manalysis/Makefile, AnalysisLinkDef.h
7147 - Adapted to change above
7148
7149 * macros/starmc.C
7150 - Adapted to change above. Changed also task instance name from
7151 mccalibcalc to mccalibupdate.
7152
7153
7154
7155 2004/01/21: Raquel de los Reyes
7156
7157 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
7158 and mcamera/MCameraCalibration.h
7159 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
7160 the private data members of the class.
7161
7162
7163
7164 2004/01/20: Thomas Hengstebeck
7165
7166 * mranforest/MRanForestCalc.[h,cc]
7167 - Added member functions Grow (training of RF) and Fill (reading in
7168 trained forest from file) which simplify macros.
7169 One just needs to call them instead of using MRanForestGrow and
7170 MRanForestFill (and the related training and fill loops) in a
7171 macro.
7172
7173
7174
7175 2004/01/20: Abelardo moralejo
7176
7177 * manalysis/MMcCalibrationCalc.cc
7178 - removed call to MCalibrationPix::SetPedestal, which was not
7179 needed.
7180
7181
7182
7183 2004/01/20: Thomas Bretz
7184
7185 * Makefile:
7186 - replaced 'make' by '$(MAKE)'
7187
7188 * Makefile.rules:
7189 - added Makefile itself to dependencies
7190
7191 * mbase/MTask.cc:
7192 - added comment about ReInit
7193
7194 * mhbase/MH.cc:
7195 - do not clear pad in DrawClone if 'same' option given
7196
7197 * mhist/MHVsTime.cc:
7198 - evaluate 'same' option
7199
7200 * mfileio/MReadCurrents.[h,cc]:
7201 - obsolete, removed
7202
7203 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
7204 - added some comments
7205
7206
7207
7208 2004/01/20: Abelardo moralejo
7209
7210 * mcalib/MHCalibrationPINDiode.cc
7211 - Added call to SetDirecory(0) for histograms fHErrCharge,
7212 fHPCharge, fHPTime.
7213
7214 * manalysis/MCerPhotPix.h:
7215 - Changed position of declaration of fIsSaturated to be the last
7216 private variable. Otherwise, since in the constructor it is
7217 initialized in the last place, a warning is displayed upon
7218 compilation in some systems.
7219
7220
7221
7222 2004/01/20: Markus Gaug
7223 * mcalib/Makefile, manalysis/Makefile:
7224 - include directory ../mtools
7225
7226 * mtools/MFFT.[h,cc]
7227 - class inherits from TObject now
7228
7229
7230
7231 2004/01/19: Markus Gaug
7232
7233 * mcalib/MHCalibrationBlindPixel.[h,cc]
7234 - fixed a bug in fFitLegend due to which program crashed by calls
7235 to DrawClone
7236 - Modified way to change the fit function
7237
7238 * mcalib/MHCalibrationPixel.[h,cc]
7239 - reordered function calls
7240 - removed SetupFill
7241
7242 * mcalib/MHCalibrationPINDiode.h
7243 - reordered function calls
7244
7245 * mcalib/MCalibrationPix.[h,cc]
7246 - limits to define fFitValid now as variables in class
7247
7248 * mcalib/MCalibrationCam.[h,cc]
7249 - reordered function calls
7250 - incorporate option to exclude pixels
7251
7252 * mcalib/MCalibrationBlindPix.h
7253 - Modified way to change the fit function
7254
7255 * mcalib/MCalibrationCalc.[h,cc]
7256 - Modified way to change the fit function
7257 - incorporate option to exclude pixels from configuration file
7258
7259 * macros/calibration.C
7260 - Modified way to change the fit function
7261 - incorporate option to exclude pixels from configuration file
7262
7263
7264
7265 2004/01/19: Javier Rico
7266
7267 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
7268 - Added documentation of member functions
7269
7270
7271
7272 2004/01/19: Abelardo Moralejo
7273
7274 * manalysis/MCerPhotPix.[h,cc]
7275 - Added fIsSaturated to flag whether low gain of the pixel is
7276 saturated. Added corresponding getter and setter functions.
7277 Updated ClassDef to version 2.
7278
7279 * mcalib/MCalibrate.cc
7280 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
7281 one low gain FADC slice is saturated.
7282
7283 * mimage/MNewImagePar.[h,cc]
7284 - Added new member variable fNumSaturatedPixels to count how many
7285 pixels were saturated. Updated ClassDef to version 2.
7286
7287
7288
7289 2004/01/19: Thomas Bretz
7290
7291 * manalysis/MPedPhotCalc.[cc,h]:
7292 - fixed order of includes
7293 - removed obsolete forward declarations
7294 - removed obsolete data member fNumPixels (stored already twice in
7295 the two TArrayF)
7296 - fixed some small bugs in the documentation
7297
7298 * manalysis/MPedCalcPedRun.cc:
7299 - updated my eMail address
7300
7301
7302
7303 2004/01/19: Javier Rico
7304
7305 * macros/dohtml.C, NEWS
7306 - include some missing info
7307
7308
7309
7310 2004/01/19: Abelardo Moralejo
7311
7312 * manalysis/MExtractedSignalPix.h
7313 - added GetNumLoGainSaturated()
7314
7315
7316
7317 2004/01/19: Markus Gaug
7318
7319 * macros/dohtml.C
7320 - include calibration.C
7321
7322 * manalysis/MExtractSignal.cc
7323 - warning of logain saturation now only once per event (out of loop)
7324
7325 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
7326 - new Flag fExcluded to indicate if pixel has been excluded from
7327 further analysis
7328
7329
7330
7331 2004/01/16: Javier Rico & Pepe Flix
7332
7333 * manalysis/MPedPhotCalc.[cc,h]
7334 - added
7335 - new class for the evaluation of pedestals in units of photons
7336 using the extracted signal from pedestal runs and calibration
7337 constants defined in MCalibrate
7338
7339 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
7340 - added entries for MPedPhotCalc
7341
7342 * macros/pedphotcalc.C
7343 - added
7344 - example on how to use MPedPhotCalc task
7345
7346
7347
7348 2004/01/16: Markus Gaug
7349
7350 * mcalib/MCalibrationFits.h
7351 - removed and incorporated in MHCalibrationBlindPixel.h
7352
7353 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
7354 mcalib/MCalibrationBlindPix.h:
7355 - incorporate Fit functions
7356 - fixed a bug due to which DrawClone crashed when class was used
7357 in a compiled macro
7358
7359 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
7360 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
7361 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
7362 mcalib/MHCalibrationPixel.cc:
7363 - fixed the warns and errs in fLog's
7364
7365
7366
7367 2004/01/16: Abelardo Moralejo
7368
7369 * manalysis/MMcCalibrationCalc.cc
7370 - TMath::Max() is no longer used because it did not compile in some
7371 systems for unkown reasons. I replaced it by a safer (and may be
7372 slower) code.
7373 - Added calpix.SetFitValid();
7374
7375 * mhist/MHEvent.cc
7376 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
7377 be 1 in case of RMS:
7378 case kEvtPedestalRMS:
7379 fHist->SetCamContent(*(MCamEvent*)par, 1);
7380
7381
7382
7383 2004/01/15: Abelardo Moralejo
7384
7385 * macros/starmc.C
7386 - Added. Version of star showing new chain to get Hillas
7387 parameters (with Size calibrated in photons) from MC files.
7388
7389
7390
7391 2004/01/15: Javier Rico
7392
7393 * manalysis/MPedCalcPedRun.[h,cc]
7394 - optimize the running time
7395 - add (some) documentation
7396 - correct treatment for the case of several input files
7397
7398 * macros/pedvsevent.C
7399 - added
7400 - draw pedestal mean and rms vs event# for input pixel# and run
7401 file, and compares them to the global pedestal mean and rms
7402
7403
7404
7405 2004/01/15: Raquel de los Reyes
7406
7407 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
7408 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
7409 functions to compute the estimation of the error of the
7410 mean. It can be done calling to the function
7411 MCamEvent::SetBit(MHCamera::kVariance) in the macro
7412
7413
7414
7415 2004/01/15: Markus Gaug
7416
7417 * mhist/MHCamera.[h,cc]
7418 - incorporate Thomas's changes
7419 - replace void CreateProjection() by TH1D *Projection(const char*)
7420
7421 * macros/calibration.C
7422 - replace MHCamera->Draw("proj") by MHCamera->Projection()
7423 - produce better fits to the projection
7424
7425 * manalysis/MSimulatedAnnealing.[h,cc],
7426 mhist/MHSimulatedAnnealing.[h,cc]:
7427 - moved to directory mtools
7428 - MSimulatedAnnealing now inherits from TObject
7429
7430 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
7431 mhist/Makefile, mhist/HistLinkDef.h:
7432 - removed MSimulatedAnnealing
7433 - removed MHSimulatedAnnealing
7434
7435 * mtools/Makefile, mtools/AnalysisLinkDef.h:
7436 - added MSimulatedAnnealing
7437 - added MHSimulatedAnnealing
7438
7439
7440
7441 2004/01/15: Thomas Bretz
7442
7443 * manalysis/AnalysisLinkDef.h:
7444 - removed MCurrents
7445
7446 * mhist/MHCamera.[h,cc]:
7447 - added member function Projection
7448 - removed fYproj
7449
7450 * mreport/MReport*.*:
7451 - added more comments
7452
7453
7454
7455 2004/01/14: Markus Gaug
7456
7457 * mtools/MFFT.[h,cc]
7458 - new class to perform Fast Fourier Transforms
7459
7460 * mtools/Makefile
7461 * mtools/ToolsLinkDef.h
7462 - include MFFT
7463
7464 * manalysis/MExtractedSignalCam.h
7465 - removed variables fNumHiGainSamples and fNumLoGainSamples
7466 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
7467
7468 * manalysis/MExtractSignal.cc
7469 - updated call to SetUsedFADCSlices
7470
7471
7472
7473 2004/01/14: Abelardo Moralejo
7474
7475 * manalysis/MMcCalibrationCalc.cc:
7476 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
7477 This can happen (depending on camera simulation parameters), and
7478 rms = 0 later resulted in the pixel being eliminated in the
7479 image cleaning.
7480
7481
7482
7483 2004/01/14: Thomas Bretz
7484
7485 * Makefile:
7486 - replaced old style Makefile.depend by directory specific
7487 dependancy files
7488
7489 * Makefile.rules:
7490 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
7491 - added rule to make dependency files
7492 - added rule to remove dependancy files.
7493 - added rmdep as prerequisite to clean
7494 - include dependency file
7495
7496 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
7497 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
7498 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
7499 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
7500 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
7501 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
7502 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
7503 mtools/Makefile:
7504 - removed clean-rule, use the one in Makefile.rules instead
7505
7506 * mreport/Makefile, mreport/ReportLinkDef.h:
7507 - added MReportHelp
7508
7509 * mreport/MReportFileRead.cc:
7510 - moved code from MReportHelp to new file
7511 - removed usage of MReport class completely
7512
7513 * mfilter/MFGeomag.[h,cc]:
7514 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
7515 - changed the second loop from 0->1151 to 1152->2304
7516 - removed dummy arrays used for reading
7517 - output filename in case of 'file not found'
7518 - removed obsolete data members
7519 - removed obsolete Init function
7520 - removed forbidden underscore from member variable
7521 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
7522
7523 * mbase/MStatusDisplay.[h,cc]:
7524 - added new member function Open
7525 - added new menu entry kFileOpen
7526 - changed UpdatePSheader algorithm (the old one was much too slow)
7527
7528 * manalysis/MCurrents.[h,cc]:
7529 - removed (old outdated)
7530
7531 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
7532 - removed MCurrents
7533
7534
7535
7536 2004/01/14: Wolfgang Wittek
7537
7538 * macros/ONOFFAnalysis.C:
7539 - current version
7540
7541 * mhist/MHSigmaTheta.[h,cc]:
7542 - replace MPedestalCam by MPedPhotCam
7543
7544 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
7545 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
7546 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
7547 - replace MPedestalCam by MPedPhotCam
7548
7549 * manalysis/MPedPhotPix.[h,cc]
7550 - uncomment SetRms()
7551
7552
7553
7554 2004/01/13: Markus Gaug
7555
7556 * manalysis/MExtractSignal.h
7557 - seems that the reduced light intensity of the CT1 Pulser
7558 results in broader pulses -> Set Default time slices to [3,10]
7559
7560 * mhist/MHCamera.cc
7561 - make Stat Window in option 'proj' bigger
7562 - add comment line at beginning of Draw()
7563
7564 * mcalib/MHCalibrationBlindPixel.[h.cc]
7565 - add Function DrawClone()
7566 - fix bug in calculation of integral (GetIntegral("width"))
7567 - restrict parameters tighter
7568 - declare fit as not valid, if less than 100 events
7569 in single photo-electron peak
7570
7571 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
7572 - fit now with fixed normalization
7573
7574 * mcalib/MHCalibrationPixel.[h.cc]
7575 - new function IsEmpty()
7576 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
7577
7578 * mcalib/MCalibrationPix.[h.cc]
7579 - F-Factor corrected and added error
7580 - Histograms not fitted if they are empty
7581 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
7582
7583 * mcalib/MCalibrationCam.cc
7584 - Square Root of Reduced Sigmas not taken, if they are < 0.
7585 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
7586
7587 * mcalib/MCalibrationCalc.cc
7588 - Blind Pixel is not additionally treated as normal pixel any more
7589 - Blind Pixel Draw replaced by DrawClone
7590
7591 * macros/calibration.C
7592 - took out some unused code
7593 - some default axis labelling corrected
7594
7595
7596
7597 2004/01/13: Abelardo Moralejo
7598
7599 * manalysis/MMcPedestalCopy.cc
7600 - added check of whether input file is a MC file before executing
7601 the PreProcess.
7602
7603
7604
7605 2004/01/13: Wolfgang Wittek
7606
7607 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
7608 - change macro to handle also MC events with finite sigmabar
7609
7610 * manalysis/MPadOn.[h,cc]:
7611 - deleted, is replaced by MPad
7612
7613 * manalysis/MPadOnOFF.[h,cc]:
7614 - deleted, is replaced by MPad
7615
7616 * manalysis/MPad.[h,cc]:
7617 - new class, replacing MPadON and MPadONOFF
7618 - handle also MC events with finite sigmabar
7619
7620 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
7621 - replace MPadON and MPadONOFF by MPad
7622
7623
7624
7625 2004/01/13: Thomas Bretz
7626
7627 * mraw/MRawRunHeader.[h,cc]:
7628 - implemented new member function GetRunTypeStr
7629
7630 * Changelog.03:
7631 - added (contains entries of 2003)
7632
7633 * Changelog:
7634 - removed entries of 2003
7635
7636 * mfilter/MFGeomag.cc:
7637 - simplified open/close of input files
7638
7639 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
7640 - added some comments
7641 - added new member function GetError
7642
7643 * Makefile:
7644 - updated 'make dox' output for convinience
7645
7646 * macros/dohtml.C:
7647 - do not print Info's
7648 - added mcamera
7649 - added mpointing
7650 - added mreport
7651
7652 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
7653 - removed some obsolete comments (these comments confused THtml)
7654
7655 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
7656 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
7657 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
7658 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
7659 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
7660 - replaced MPedestalCam by MPedPhotCam
7661 - removed some obsolete includes
7662
7663 * mbase/BaseLinkDef.h, mbase/Makefile:
7664 - added MLogPlugin
7665 - added MLogHtml
7666
7667 * mbase/MLog.[h,cc]:
7668 - added use of plugins
7669
7670 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
7671 - added
7672
7673 * mbase/MStatusDisplay.[h,cc]:
7674 - added a Save-As dialog
7675
7676
7677
7678 2004/01/12: Thomas Bretz
7679
7680 * macros/rootlogon.C:
7681 - added mcamera to include path
7682 - added mpointing to include path
7683 - added mreport to include path
7684
7685 * mbase/MLog.cc:
7686 - updated my eMail address
7687
7688 * mbase/MParContainer.h:
7689 - added Read member function
7690
7691 * mbase/MStatusDisplay.[h,cc]:
7692 - changed size of ps-paper
7693 - added a user defined bottom line to the ps-files
7694 - added name (currently unused)
7695 - added title (used as possible bottom line in ps-file)
7696
7697 * mraw/MRawRunHeader.cc:
7698 - added some comments
7699
7700 * status.cc:
7701 - set name of input as bottom line of status display
7702
7703
7704
7705 2004/01/12: Abelardo Moralejo
7706
7707 * mimage/MStereoPar.cc
7708 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
7709 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
7710 Bug had no effect unless scale1 != scale2 (-> telescopes of
7711 different size).
7712
7713
7714
7715 2004/01/12: Markus Gaug
7716
7717 * manalysis/MExtractSignal.[h,cc]
7718 - take out some uncommented code
7719 - replace logainshift by two independent variables:
7720 logainfirst, logainlast
7721 - because in most data, maximum occurs in slice 4, shift default
7722 from slices 4-9 to slices 3-8.
7723
7724 * manalysis/MExtractedSignalPix.[h,cc]
7725 - took out some uncommented code
7726 - new initializers: instead of -1. now 99999.9
7727
7728
7729
7730 2004/01/09: Markus Gaug
7731
7732 * mcalib/MCalibrationCam.[h,cc]
7733 - take out 1-dim histos because we can use
7734 the projections in MHCamera (s.b.)
7735
7736 * mcalib/MHCalibrationBlindPixel.h
7737 - make the fit by default quiet
7738
7739 * mcalib/MHCalibrationPixel.[h,cc]
7740 * mcalib/MCalibrationPix.[h,cc]
7741 - Ranges of time slices stored independently for HiGain and LoGain
7742 in order to allow consecutive checks
7743
7744 * mhist/MHCamera.[h.cc]
7745 - add the possibility to call a Draw("proj") which will
7746 draw a Y-Projection of the histogram
7747
7748 * macros/calibration.C
7749 - apply the drawing of the projections and fit them
7750
7751 * mcalib/MCalibrationCalc.cc
7752 - catch the possibility of a calibration file,
7753 unintendedly being a pedestal or cosmic file.
7754 Program now exits with an error before doing the fits
7755
7756 * mcalib/MCalibrationPix.[h,cc]
7757 - fixed a bug in calculation of fFitValid.
7758 before, a call to IsFitValid() always returned false
7759
7760
7761
7762 2004/01/09: Javier Lpez
7763
7764 * macros/bootcampstandardanalysis.C
7765 - added new macro that holds the main scheleton discussed in the
7766 december bootcamp in Wuerzburg. It runs first over a pedestal
7767 run, then over a calibration run, again over the pedestal run
7768 to compute de pedestal in number of photons and finally over a
7769 data run to calibrate the data.
7770
7771
7772
7773 2004/01/06: Sebastian Raducci
7774
7775 * manalysis/MArrivalTime.[h,cc]
7776 - added new method to calculate photon arrival times. It uses the
7777 TSpline5 Root Class to interpolate the Fadc Slices. The time is
7778 the abscissa value of the absolute maximum of the interpolation
7779 - added new method to find clusters with similar arrival times.
7780 For now it's a preliminary version. It simply search for adiacent
7781 pixels having the same arrival time (color).
7782
7783 * manalysis/MArrivalTimeCalc.[h,cc]
7784 - modified the Process() method according to the changes in the
7785 Arrival Time Cointainer
7786
7787 * mmain/MEventDisplay.cc
7788 - added new tab in the camera event display to show the arrival
7789 time. This arrival time is calculated with the spline method
7790 - the old Arrival Time pad now it's called Max Slice Idx, because
7791 it's only the index of the slice with the max content.
7792
7793 * mhist/MHEvent.[h,cc]
7794 - added new fType in te enumeration to handle the arrival time
7795 histos
Note: See TracBrowser for help on using the repository browser.