Changeset 1740 for trunk/MagicSoft


Ignore:
Timestamp:
01/31/03 14:21:48 (22 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1735 r1740  
    11
    22                                                         -*-*- 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
    322
    423 2003/01/27: Robert Wagner
  • trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h

    r1682 r1740  
    4646#pragma link C++ class MApplyPadding+;
    4747
     48#pragma link C++ class MTrigLvl2+;
     49#pragma link C++ class MTrigLvl2FillTask+;
     50
     51
    4852#endif
  • trunk/MagicSoft/Mars/manalysis/Makefile

    r1682 r1740  
    2323#
    2424INCLUDES = -I. -I../mbase -I../mmc -I../mraw -I../mgeom \
    25            -I../mdata -I../mhist
     25           -I../mdata -I../mhist -I../mgui
    2626
    2727#------------------------------------------------------------------------------
     
    5858           MSigmabarParam.cc \
    5959           MSigmabarCalc.cc \
    60            MApplyPadding.cc
     60           MApplyPadding.cc \
     61           MTrigLvl2.cc \
     62           MTrigLvl2FillTask.cc
    6163
    6264SRCS    = $(SRCFILES)
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.cc

    r1715 r1740  
    942942 }
    943943 */
     944
     945
     946// ------------------------------------------------------------------------
     947//
     948// Function introduced  (31-01-03)
     949//
     950void 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  
    9090    void SetInvDeepBlueSeaPalette(); // *MENU*
    9191
     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
    9297    ClassDef(MCamDisplay, 0) // Displays the magic camera
    9398};
Note: See TracChangeset for help on using the changeset viewer.