CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWNumberEntry.cc
Go to the documentation of this file.
2 
3 #include <cstdlib>
4 
5 //------------------------------FWNumberEntryField------------------------------//
6 
7 //______________________________________________________________________________
8 FWNumberEntryField::FWNumberEntryField(const TGWindow * p, Int_t id, Double_t val,
9  GContext_t norm, FontStruct_t font,
10  UInt_t option, ULong_t back)
11  : TGNumberEntryField(p, id, val, norm, font, option, back)
12 {
13  // Constructs a number entry field.
14 }
15 
16 //______________________________________________________________________________
18  Int_t id, Double_t val,
19  EStyle style, EAttribute attr,
20  ELimit limits, Double_t min, Double_t max)
21  : TGNumberEntryField(parent, id, val, style,attr, limits, min, max)
22 {
23  // Constructs a number entry field.
24 }
25 
26 //------------------------------------------------------------------------------
27 
28 //______________________________________________________________________________
30 {
31  // Handle focus change.
32  // Avoid verification by TGNumberEntryField (which is f***ed).
33 
34  return TGTextEntry::HandleFocusChange(event);
35 }
36 
37 //______________________________________________________________________________
39 {
40  // Return was pressed.
41  // Avoid verification by TGNumberEntryField (which is f***ed).
42 
43  TGTextEntry::ReturnPressed();
44 }
45 
46 //------------------------------------------------------------------------------
47 
48 //______________________________________________________________________________
50 {
51  return static_cast<UInt_t>(strtoul(GetText(), 0, 10));
52 }
53 
54 //______________________________________________________________________________
56 {
57  SetText(Form("%u", n), kFALSE);
58 }
59 
60 //______________________________________________________________________________
62 {
63  return static_cast<ULong64_t>(strtoull(GetText(), 0, 10));
64 }
65 
66 //______________________________________________________________________________
68 {
69  SetText(Form("%llu", n), kFALSE);
70 }
virtual ULong64_t GetULong64Number()
virtual void SetUIntNumber(UInt_t n)
list parent
Definition: dbtoconf.py:74
FWNumberEntryField(const TGWindow *p, Int_t id, Double_t val, GContext_t norm, FontStruct_t font=GetDefaultFontStruct(), UInt_t option=kSunkenFrame|kDoubleBorder, Pixel_t back=GetWhitePixel())
virtual Bool_t HandleFocusChange(Event_t *event)
virtual void SetULong64Number(ULong64_t n)
virtual UInt_t GetUIntNumber()
T min(T a, T b)
Definition: MathUtil.h:58
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual void ReturnPressed()