CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWPathsPopup.h
Go to the documentation of this file.
1 #ifndef Fireworks_FWInterface_FWPathsPopup_h
2 #define Fireworks_FWInterface_FWPathsPopup_h
3 
4 #include "TGFrame.h"
5 #include <string>
6 
7 namespace edm
8 {
9  class ScheduleInfo;
10  class ModuleDescription;
11  class Event;
12  class EventSetup;
13 }
14 
15 class FWFFLooper;
16 class FWGUIManager;
17 
18 class TGLabel;
19 class TGTextEdit;
20 class TGTextButton;
21 class TString;
22 class FWPSetTableManager;
23 class FWTableWidget;
24 class TGTextEntry;
25 
26 class FWPathsPopup : public TGMainFrame
27 {
28 public:
30 
31  void postProcessEvent(edm::Event const&, edm::EventSetup const&);
33  void preModule(edm::ModuleDescription const &);
34  void scheduleReloadEvent();
35  bool &hasChanges() { return m_hasChanges; }
36  void setup(const edm::ScheduleInfo *info);
37  void applyEditor();
38  void cellClicked(Int_t iRow, Int_t iColumn, Int_t iButton, Int_t iKeyMod, Int_t iGlobalX, Int_t iGlobalY);
39  void updateFilterString(const char *str);
40  void windowIsClosing();
41 
42  virtual Bool_t HandleKey(Event_t* event);
43 
44 private:
46 
47 #ifndef __CINT__
49 #endif
51 
52  TGLabel *m_moduleLabel;
53  TGLabel *m_moduleName;
54 
55  TGTextButton *m_apply;
58  TGTextEntry *m_search;
60 
62 };
63 
64 #endif
void scheduleReloadEvent()
FWGUIManager * m_guiManager
Definition: FWPathsPopup.h:59
void cellClicked(Int_t iRow, Int_t iColumn, Int_t iButton, Int_t iKeyMod, Int_t iGlobalX, Int_t iGlobalY)
TGTextEntry * m_search
Definition: FWPathsPopup.h:58
virtual Bool_t HandleKey(Event_t *event)
Definition: FWPathsPopup.cc:91
void applyEditor()
void windowIsClosing()
Definition: FWPathsPopup.cc:31
TGLabel * m_moduleLabel
Definition: FWPathsPopup.h:52
TGLabel * m_moduleName
Definition: FWPathsPopup.h:53
FWTableWidget * m_tableWidget
Definition: FWPathsPopup.h:57
bool & hasChanges()
Definition: FWPathsPopup.h:35
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
const edm::ScheduleInfo * m_info
Definition: FWPathsPopup.h:45
void preModule(edm::ModuleDescription const &)
TGTextButton * m_apply
Definition: FWPathsPopup.h:55
void updateFilterString(const char *str)
void postModule(edm::ModuleDescription const &)
bool m_hasChanges
Definition: FWPathsPopup.h:50
FWFFLooper * m_looper
Definition: FWPathsPopup.h:48
void postProcessEvent(edm::Event const &, edm::EventSetup const &)
ClassDef(FWPathsPopup, 0)
FWPSetTableManager * m_psTable
Definition: FWPathsPopup.h:56
void setup(const edm::ScheduleInfo *info)
FWPathsPopup(FWFFLooper *, FWGUIManager *)
Definition: FWPathsPopup.cc:37