Changeset 714 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 03/30/01 16:16:03 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mgui
- Files:
-
- 10 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/GuiIncl.h
r669 r714 1 1 #ifndef __CINT__ 2 2 3 #include <TGButton.h> // TGPictureButton4 #include <TGTab.h> // TGTab5 #include <TGMenu.h> // TGPopupMenu6 #include <TGMsgBox.h> // TGMsgBox7 #include <TGListBox.h> // TGListBox8 #include <TGListView.h> // TGListBox9 #include <TGSplitter.h> // TGHorizontal3DLine10 #include <TGFSContainer.h> // TGFileContainer11 #include <TGLabel.h> // TGLabel12 #include <TGTextEntry.h>13 14 3 #endif // __CINT__ -
trunk/MagicSoft/Mars/mgui/GuiLinkDef.h
r695 r714 4 4 #pragma link off all classes; 5 5 #pragma link off all functions; 6 7 #pragma link C++ class MGMarsMain;8 #pragma link C++ class MGEventDispMain;9 #pragma link C++ class MGDataCheckMain;10 #pragma link C++ class MGMonteCarloMain;11 12 #pragma link C++ class MGPrototyp;13 6 14 7 #pragma link C++ class MHexagon; -
trunk/MagicSoft/Mars/mgui/MCamDisplay.h
r698 r714 20 20 class TBox; 21 21 class TText; 22 class TClonesArray 22 class TClonesArray; 23 23 24 class MCerPhotEvt 24 class MCerPhotEvt; 25 25 class MGeomCam; 26 26 … … 28 28 { 29 29 private: 30 Bool_t fAutoScale 30 Bool_t fAutoScale; //! indicating the autoscale function 31 31 32 UInt_t fNumPixels 33 TClonesArray *fPixels 32 UInt_t fNumPixels; //! 33 TClonesArray *fPixels ; //! 34 34 35 Float_t fMinPhe 36 Float_t fMaxPhe 35 Float_t fMinPhe; //! The minimal number of Phe 36 Float_t fMaxPhe; //! The maximum number of Phe 37 37 38 TClonesArray *fLegend 39 TClonesArray *fLegText 38 TClonesArray *fLegend; //! 39 TClonesArray *fLegText; //! 40 40 41 41 TBox *GetBox(Int_t i) { return (TBox*) fLegend->At(i); } … … 51 51 MCamDisplay (MGeomCam *geom); 52 52 53 ~MCamDisplay () 53 ~MCamDisplay (); 54 54 55 void Init() 55 void Init(); 56 56 57 void Draw(Option_t *option = "" ) 57 void Draw(Option_t *option = "" ); 58 58 59 void DrawPhotNum( MCerPhotEvt *event) 60 void DrawPhotErr( MCerPhotEvt *event) 59 void DrawPhotNum( MCerPhotEvt *event); 60 void DrawPhotErr( MCerPhotEvt *event); 61 61 62 void Reset() 62 void Reset(); 63 63 64 64 MHexagon &operator[](int i) { return *((MHexagon*)fPixels->At(i)); } 65 65 66 Int_t GetColor( Float_t wert ) 66 Int_t GetColor( Float_t wert ); 67 67 68 void UpdateLegend() 68 void UpdateLegend(); 69 69 70 70 void SetAutoScale (Bool_t input = kTRUE ) 71 71 { 72 fAutoScale = input 72 fAutoScale = input; 73 73 } 74 74 -
trunk/MagicSoft/Mars/mgui/Makefile
r695 r714 30 30 SRCFILES = MCamDisplay.cc \ 31 31 MCamNeighbor.cc \ 32 MGDataCheckMain.cc \33 MGEventDispMain.cc \34 MGMarsMain.cc \35 MGMonteCarloMain.cc \36 MGPrototyp.cc \37 32 MGeomCamCT1.cc \ 38 33 MGeomCamMagic.cc \
Note:
See TracChangeset
for help on using the changeset viewer.