Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:11:42

0001 // @(#)root/eve:$Id$
0002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TEvePointSetArrayEditor
0013 #define ROOT_TEvePointSetArrayEditor
0014 
0015 #include "TGedFrame.h"
0016 
0017 class TGCheckButton;
0018 class TGNumberEntry;
0019 class TGColorSelect;
0020 
0021 class TEveGValuator;
0022 class TEveGDoubleValuator;
0023 
0024 class TEvePointSetArray;
0025 
0026 class TEvePointSetArrayEditor : public TGedFrame
0027 {
0028    TEvePointSetArrayEditor(const TEvePointSetArrayEditor&);            // Not implemented
0029    TEvePointSetArrayEditor& operator=(const TEvePointSetArrayEditor&); // Not implemented
0030 
0031 protected:
0032    TEvePointSetArray   *fM;       // Model object.
0033 
0034    TEveGDoubleValuator *fRange;   // Control for displayed range of the separating quantity.
0035 
0036 public:
0037    TEvePointSetArrayEditor(const TGWindow *p = nullptr, Int_t width=170, Int_t height=30,
0038                            UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
0039    ~TEvePointSetArrayEditor() override;
0040 
0041    void SetModel(TObject* obj) override;
0042 
0043    void DoRange();
0044 
0045    ClassDefOverride(TEvePointSetArrayEditor, 0); // Editor for TEvePointSetArray class.
0046 };
0047 
0048 #endif