Changeset 1740
- Timestamp:
- 01/31/03 14:21:48 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1735 r1740 1 1 2 2 -*-*- END -*-*- 3 4 2003/01/31 Antonio Stamerra & Marcos Lopez 5 6 * mgui/MCamDisplay.[cc|h] 7 - Added a new function MCamDisplay::SetPix(const Int_t pixnum, const Int_t 8 color, Float_t min, Float_t max) which just set the color of a given pixel 9 10 * created two new classes for simulating the second level trigger in the 11 directory MAnalysis: 12 - MTrigLvl2.[cc|h] // Implement the Lvl2 topology and selection 13 // strategies 14 - MTrigLvl2FillTask.[cc|h] // For a given MMc event, fill the MTrigLvl2 15 with the Lvl1 trigger information 16 17 * manalysis/Makefile 18 - Added -I../mgui 19 20 * Added macro macros/triglvl2.C which uses the above classes. 21 3 22 4 23 2003/01/27: Robert Wagner -
trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
r1682 r1740 46 46 #pragma link C++ class MApplyPadding+; 47 47 48 #pragma link C++ class MTrigLvl2+; 49 #pragma link C++ class MTrigLvl2FillTask+; 50 51 48 52 #endif -
trunk/MagicSoft/Mars/manalysis/Makefile
r1682 r1740 23 23 # 24 24 INCLUDES = -I. -I../mbase -I../mmc -I../mraw -I../mgeom \ 25 -I../mdata -I../mhist 25 -I../mdata -I../mhist -I../mgui 26 26 27 27 #------------------------------------------------------------------------------ … … 58 58 MSigmabarParam.cc \ 59 59 MSigmabarCalc.cc \ 60 MApplyPadding.cc 60 MApplyPadding.cc \ 61 MTrigLvl2.cc \ 62 MTrigLvl2FillTask.cc 61 63 62 64 SRCS = $(SRCFILES) -
trunk/MagicSoft/Mars/mgui/MCamDisplay.cc
r1715 r1740 942 942 } 943 943 */ 944 945 946 // ------------------------------------------------------------------------ 947 // 948 // Function introduced (31-01-03) 949 // 950 void MCamDisplay::SetPix(const Int_t pixnum, const Int_t color, Float_t min, Float_t max) 951 { 952 (*this)[pixnum].SetFillColor(GetColor(color, min, max)); 953 954 } -
trunk/MagicSoft/Mars/mgui/MCamDisplay.h
r1715 r1740 90 90 void SetInvDeepBlueSeaPalette(); // *MENU* 91 91 92 93 94 void SetPix(const Int_t pixnum, const Int_t color, Float_t min, Float_t max); // New function added by M.Lopez in 31-01-03 95 96 92 97 ClassDef(MCamDisplay, 0) // Displays the magic camera 93 98 };
Note:
See TracChangeset
for help on using the changeset viewer.