CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
FWGUIEventDataAdder Class Reference

#include <Fireworks/Core/interface/FWGUIEventDataAdder.h>

Public Member Functions

void addNewItem ()
 
void addNewItemAndClose ()
 
 FWGUIEventDataAdder (UInt_t w, UInt_t, FWEventItemsManager *, TGFrame *, FWJobMetadataManager *)
 
void metadataUpdatedSlot (void)
 
void resetNameEntry ()
 
void rowClicked (Int_t iRow, Int_t iButton, Int_t iKeyMod, Int_t, Int_t)
 
void show ()
 
void updateFilterString (const char *str)
 
void windowIsClosing ()
 
virtual ~FWGUIEventDataAdder ()
 

Private Member Functions

void createWindow ()
 
 FWGUIEventDataAdder (const FWGUIEventDataAdder &)=delete
 
void newIndexSelected (int)
 
const FWGUIEventDataAdderoperator= (const FWGUIEventDataAdder &)=delete
 

Private Attributes

TGTextButton * m_apply
 
TGTextButton * m_applyAndClose
 
TGCheckButton * m_doNotUseProcessName
 
std::string m_expr
 
TGTransientFrame * m_frame
 
FWEventItemsManagerm_manager
 
FWJobMetadataManagerm_metadataManager
 
std::string m_moduleLabel
 
TGTextEntry * m_name
 
TGFrame * m_parentFrame
 
std::string m_processName
 
std::string m_productInstanceLabel
 
std::string m_purpose
 
TGTextEntry * m_search
 
DataAdderTableManagerm_tableManager
 
FWTableWidgetm_tableWidget
 
std::string m_type
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 41 of file FWGUIEventDataAdder.h.

Constructor & Destructor Documentation

◆ FWGUIEventDataAdder() [1/2]

FWGUIEventDataAdder::FWGUIEventDataAdder ( UInt_t  w,
UInt_t  iHeight,
FWEventItemsManager iManager,
TGFrame *  iParent,
FWJobMetadataManager iMetadataManager 
)

Definition at line 318 of file FWGUIEventDataAdder.cc.

323  : m_manager(iManager), m_metadataManager(iMetadataManager), m_parentFrame(iParent) {
325  createWindow();
326 }

References createWindow(), m_metadataManager, FWJobMetadataManager::metadataChanged_, and metadataUpdatedSlot().

◆ ~FWGUIEventDataAdder()

FWGUIEventDataAdder::~FWGUIEventDataAdder ( )
virtual

Definition at line 333 of file FWGUIEventDataAdder.cc.

333  {
334  /*
335  // m_frame->Cleanup();
336  // delete m_frame;
337  m_frame=0;
338  // delete m_tableWidget;
339  m_tableWidget=0;
340  delete m_tableManager;
341  m_tableManager=0;
342  */
343 }

◆ FWGUIEventDataAdder() [2/2]

FWGUIEventDataAdder::FWGUIEventDataAdder ( const FWGUIEventDataAdder )
privatedelete

Member Function Documentation

◆ addNewItem()

void FWGUIEventDataAdder::addNewItem ( )

Definition at line 360 of file FWGUIEventDataAdder.cc.

360  {
361  TClass *theClass = TClass::GetClass(m_type.c_str());
362  if (nullptr == theClass) {
363  return;
364  }
366  if (moduleLabel.empty()) {
367  return;
368  }
369 
370  const std::string name = m_name->GetText();
371  if (name.empty()) {
372  return;
373  }
374 
375  if (m_manager->find(name)) {
376  TString msg("Event item '");
377  msg += name;
378  msg += "' is already registered. Please use another name.";
379  fwLog(fwlog::kWarning) << msg.Data() << std::endl;
380  new TGMsgBox(gClient->GetDefaultRoot(), m_frame, "Error - Name conflict", msg, kMBIconExclamation, kMBOk);
381  return;
382  }
383 
384  int largest = -1;
385  if (m_manager->begin() != m_manager->end()) {
386  if (*(m_manager->begin()))
387  largest = (*(m_manager->begin()))->layer();
388  }
389  for (FWEventItemsManager::const_iterator it = m_manager->begin(), itEnd = m_manager->end(); it != itEnd; ++it) {
390  if ((*it) && largest < (*it)->layer()) {
391  largest = (*it)->layer();
392  }
393  }
394  ++largest;
396  if (m_doNotUseProcessName->IsOn() && m_doNotUseProcessName->IsEnabled()) {
397  processName = "";
398  }
400  theClass,
401  m_purpose,
403  moduleLabel,
405  processName,
406  "",
407  largest);
408  m_manager->add(desc);
409 }

References FWEventItemsManager::add(), FWEventItemsManager::begin(), FWDisplayProperties::defaultProperties, FWEventItemsManager::end(), FWEventItemsManager::find(), fwLog, fwlog::kWarning, m_doNotUseProcessName, m_frame, m_manager, m_moduleLabel, m_name, m_processName, m_productInstanceLabel, m_purpose, m_type, HerwigMaxPtPartonFilter_cfi::moduleLabel, mps_check::msg, Skims_PA_cff::name, SimL1EmulatorRepack_CalouGT_cff::processName, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by addNewItemAndClose().

◆ addNewItemAndClose()

void FWGUIEventDataAdder::addNewItemAndClose ( )

Definition at line 411 of file FWGUIEventDataAdder.cc.

411  {
412  addNewItem();
413  windowIsClosing();
414 }

References addNewItem(), and windowIsClosing().

◆ createWindow()

void FWGUIEventDataAdder::createWindow ( )
private

Definition at line 444 of file FWGUIEventDataAdder.cc.

444  {
446  m_tableManager->indexSelected_.connect(boost::bind(&FWGUIEventDataAdder::newIndexSelected, this, _1));
447 
448  m_frame = new TGTransientFrame(gClient->GetDefaultRoot(), m_parentFrame, 600, 400);
449  m_frame->Connect("CloseWindow()", "FWGUIEventDataAdder", this, "windowIsClosing()");
450 
451  FWDialogBuilder builder(m_frame);
452  TGTextButton *cancelButton, *resetButton;
453 
454  builder.indent(10)
455  .spaceDown(15)
456  .addLabel("Search:", 0)
457  .expand(false)
458  .spaceUp(4)
459  .floatLeft(4)
460  .addTextEntry("", &m_search)
461  .spaceUp(0)
462  .frameSpaceDown(10)
463  .addLabel("Viewable Collections", 8)
464  .frameSpaceDown(5)
465  .addTable(m_tableManager, &m_tableWidget)
466  .expand(true, true)
467  .addLabel("Name:", 0)
468  .expand(false)
469  .spaceUp(4)
470  .floatLeft(4)
471  .addTextEntry("", &m_name)
472  .spaceUp(0)
473  .floatLeft(4)
474  .addTextButton(" Reset ", &resetButton)
475  .expand(false, false)
476  .frameSpaceUpDown(5)
477  .addCheckbox(
478  "Do not use Process Name and "
479  "instead only get this data "
480  "from the most recent Process",
482  .frameSpaceDown(15)
483  .hSpacer()
484  .floatLeft(0)
485  .addTextButton(" Close ", &cancelButton)
486  .expand(false)
487  .floatLeft(4)
488  .addTextButton(" Add Data ", &m_apply)
489  .expand(false)
490  .floatLeft(4)
491  .addTextButton(" Add Data && Close ", &m_applyAndClose)
492  .expand(false)
493  .spaceRight(25)
494  .spaceDown(15);
495 
496  m_search->Connect("TextChanged(const char *)", "FWGUIEventDataAdder", this, "updateFilterString(const char *)");
497  m_search->SetEnabled(true);
501  m_tableWidget->Connect("rowClicked(Int_t,Int_t,Int_t,Int_t,Int_t)",
502  "FWGUIEventDataAdder",
503  this,
504  "rowClicked(Int_t,Int_t,Int_t,Int_t,Int_t)");
505 
507  m_name->SetState(true);
508  resetButton->SetEnabled(true);
509  resetButton->Connect("Clicked()", "FWGUIEventDataAdder", this, "resetNameEntry()");
510  m_doNotUseProcessName->SetState(kButtonDown);
511  cancelButton->Connect("Clicked()", "FWGUIEventDataAdder", this, "windowIsClosing()");
512  cancelButton->SetEnabled(true);
513  m_apply->Connect("Clicked()", "FWGUIEventDataAdder", this, "addNewItem()");
514  m_applyAndClose->Connect("Clicked()", "FWGUIEventDataAdder", this, "addNewItemAndClose()");
515 
516  m_frame->SetWindowName("Add Collection");
517  m_frame->MapSubwindows();
518  m_frame->Layout();
519 }

References FWDialogBuilder::addCheckbox(), FWDialogBuilder::addLabel(), FWDialogBuilder::addTable(), FWDialogBuilder::addTextButton(), FWDialogBuilder::addTextEntry(), FWTableWidget::disableGrowInWidth(), FWDialogBuilder::expand(), FWDialogBuilder::floatLeft(), FWDialogBuilder::frameSpaceDown(), FWDialogBuilder::frameSpaceUpDown(), FWDialogBuilder::hSpacer(), FWDialogBuilder::indent(), DataAdderTableManager::indexSelected_, m_apply, m_applyAndClose, m_doNotUseProcessName, m_frame, m_metadataManager, m_name, m_parentFrame, m_search, m_tableManager, m_tableWidget, newIndexSelected(), FWTableWidget::SetBackgroundColor(), FWTableWidget::SetHeaderBackgroundColor(), FWTableWidget::SetLineSeparatorColor(), FWDialogBuilder::spaceDown(), FWDialogBuilder::spaceRight(), and FWDialogBuilder::spaceUp().

Referenced by FWGUIEventDataAdder(), and show().

◆ metadataUpdatedSlot()

void FWGUIEventDataAdder::metadataUpdatedSlot ( void  )

Slot for the metadataChanged signal of the FWJobMetadataManager. Whenever metadata changes, for whatever reason (e.g. a new file), we need to update the table.

Definition at line 525 of file FWGUIEventDataAdder.cc.

525  {
527  m_tableManager->sort(0, true);
528 }

References m_tableManager, DataAdderTableManager::reset(), and FWTableManagerBase::sort().

Referenced by FWGUIEventDataAdder().

◆ newIndexSelected()

void FWGUIEventDataAdder::newIndexSelected ( int  iSelectedIndex)
private

Definition at line 534 of file FWGUIEventDataAdder.cc.

534  {
535  if (-1 != iSelectedIndex) {
536  std::vector<FWJobMetadataManager::Data> &metadata = m_metadataManager->usableData();
537  m_purpose = metadata[iSelectedIndex].purpose_;
538  m_type = metadata[iSelectedIndex].type_;
539  std::string oldModuleLabel = m_moduleLabel;
540  m_moduleLabel = metadata[iSelectedIndex].moduleLabel_;
541  m_productInstanceLabel = metadata[iSelectedIndex].productInstanceLabel_;
542  m_processName = metadata[iSelectedIndex].processName_;
543 
544  if (strlen(m_name->GetText()) == 0 || oldModuleLabel == m_name->GetText()) {
545  m_name->SetText(m_moduleLabel.c_str());
546  }
547  m_apply->SetEnabled(true);
548  m_applyAndClose->SetEnabled(true);
549 
550  //Check to see if this is the last process, if it is then we can let the user decide
551  // to not use the process name when doing the lookup. This makes a saved configuration
552  // more robust. However, if they choose a collection not from the last process then we need the
553  // process name in order to correctly get the data they want
554  bool isMostRecentProcess = true;
555  int index = 0;
556  for (std::vector<FWJobMetadataManager::Data>::iterator it = metadata.begin(), itEnd = metadata.end();
557  it != itEnd && isMostRecentProcess;
558  ++it, ++index) {
559  if (index == iSelectedIndex) {
560  continue;
561  }
562  if (it->moduleLabel_ == m_moduleLabel && it->purpose_ == m_purpose && it->type_ == m_type &&
563  it->productInstanceLabel_ == m_productInstanceLabel) {
564  //see if this process is newer than the data requested
565 
566  for (size_t pni = 0, pne = m_metadataManager->processNamesInJob().size(); pni != pne; ++pni) {
568  if (m_processName == processName)
569  break;
570 
571  if (it->processName_ == processName) {
572  isMostRecentProcess = false;
573  break;
574  }
575  }
576  }
577  }
578  if (isMostRecentProcess) {
579  if (!m_doNotUseProcessName->IsEnabled()) {
580  m_doNotUseProcessName->SetEnabled(true);
581  }
582  } else {
583  //NOTE: must remember state before we get here because 'enable' and 'on' are mutually
584  // exlcusive :(
585  m_doNotUseProcessName->SetEnabled(false);
586  }
587  }
588 }

References m_apply, m_applyAndClose, m_doNotUseProcessName, m_metadataManager, m_moduleLabel, m_name, m_processName, m_productInstanceLabel, m_purpose, m_type, TrackingMonitor_cfi::metadata, SimL1EmulatorRepack_CalouGT_cff::processName, FWJobMetadataManager::processNamesInJob(), AlCaHLTBitMon_QueryRunRegistry::string, and FWJobMetadataManager::usableData().

Referenced by createWindow().

◆ operator=()

const FWGUIEventDataAdder& FWGUIEventDataAdder::operator= ( const FWGUIEventDataAdder )
privatedelete

◆ resetNameEntry()

void FWGUIEventDataAdder::resetNameEntry ( )

Definition at line 530 of file FWGUIEventDataAdder.cc.

530  {
531  m_name->SetText(m_apply->IsEnabled() ? m_moduleLabel.c_str() : "", kFALSE);
532 }

References m_apply, m_moduleLabel, and m_name.

◆ rowClicked()

void FWGUIEventDataAdder::rowClicked ( Int_t  iRow,
Int_t  iButton,
Int_t  iKeyMod,
Int_t  ,
Int_t   
)

Definition at line 590 of file FWGUIEventDataAdder.cc.

590  {
591  if (iButton == kButton1) {
592  m_tableManager->setSelection(iRow, iKeyMod);
593  }
594 }

References m_tableManager, and DataAdderTableManager::setSelection().

◆ show()

void FWGUIEventDataAdder::show ( )

Definition at line 416 of file FWGUIEventDataAdder.cc.

416  {
417  // Map main frame
418  if (nullptr == m_frame) {
419  createWindow();
420  }
421  m_frame->MapWindow();
422 }

References createWindow(), and m_frame.

Referenced by FWGUIManager::addData().

◆ updateFilterString()

void FWGUIEventDataAdder::updateFilterString ( const char *  str)

◆ windowIsClosing()

void FWGUIEventDataAdder::windowIsClosing ( )

Definition at line 424 of file FWGUIEventDataAdder.cc.

424  {
425  m_name->SetText("");
426  m_search->SetText("");
427  m_purpose.clear();
428  m_type.clear();
429  m_moduleLabel.clear();
430  m_processName.clear();
431  m_productInstanceLabel.clear();
432  m_apply->SetEnabled(false);
433  m_applyAndClose->SetEnabled(false);
434 
435  m_frame->UnmapWindow();
436  m_frame->DontCallClose();
437 }

References m_apply, m_applyAndClose, m_frame, m_moduleLabel, m_name, m_processName, m_productInstanceLabel, m_purpose, m_search, and m_type.

Referenced by addNewItemAndClose().

Member Data Documentation

◆ m_apply

TGTextButton* FWGUIEventDataAdder::m_apply
private

◆ m_applyAndClose

TGTextButton* FWGUIEventDataAdder::m_applyAndClose
private

Definition at line 81 of file FWGUIEventDataAdder.h.

Referenced by createWindow(), newIndexSelected(), and windowIsClosing().

◆ m_doNotUseProcessName

TGCheckButton* FWGUIEventDataAdder::m_doNotUseProcessName
private

Definition at line 79 of file FWGUIEventDataAdder.h.

Referenced by addNewItem(), createWindow(), and newIndexSelected().

◆ m_expr

std::string FWGUIEventDataAdder::m_expr
private

Definition at line 91 of file FWGUIEventDataAdder.h.

◆ m_frame

TGTransientFrame* FWGUIEventDataAdder::m_frame
private

Definition at line 77 of file FWGUIEventDataAdder.h.

Referenced by addNewItem(), createWindow(), show(), and windowIsClosing().

◆ m_manager

FWEventItemsManager* FWGUIEventDataAdder::m_manager
private

Definition at line 73 of file FWGUIEventDataAdder.h.

Referenced by addNewItem().

◆ m_metadataManager

FWJobMetadataManager* FWGUIEventDataAdder::m_metadataManager
private

Definition at line 74 of file FWGUIEventDataAdder.h.

Referenced by createWindow(), FWGUIEventDataAdder(), and newIndexSelected().

◆ m_moduleLabel

std::string FWGUIEventDataAdder::m_moduleLabel
private

◆ m_name

TGTextEntry* FWGUIEventDataAdder::m_name
private

◆ m_parentFrame

TGFrame* FWGUIEventDataAdder::m_parentFrame
private

Definition at line 76 of file FWGUIEventDataAdder.h.

Referenced by createWindow().

◆ m_processName

std::string FWGUIEventDataAdder::m_processName
private

Definition at line 89 of file FWGUIEventDataAdder.h.

Referenced by addNewItem(), newIndexSelected(), and windowIsClosing().

◆ m_productInstanceLabel

std::string FWGUIEventDataAdder::m_productInstanceLabel
private

Definition at line 88 of file FWGUIEventDataAdder.h.

Referenced by addNewItem(), newIndexSelected(), and windowIsClosing().

◆ m_purpose

std::string FWGUIEventDataAdder::m_purpose
private

Definition at line 84 of file FWGUIEventDataAdder.h.

Referenced by addNewItem(), newIndexSelected(), and windowIsClosing().

◆ m_search

TGTextEntry* FWGUIEventDataAdder::m_search
private

Definition at line 82 of file FWGUIEventDataAdder.h.

Referenced by createWindow(), and windowIsClosing().

◆ m_tableManager

DataAdderTableManager* FWGUIEventDataAdder::m_tableManager
private

◆ m_tableWidget

FWTableWidget* FWGUIEventDataAdder::m_tableWidget
private

Definition at line 94 of file FWGUIEventDataAdder.h.

Referenced by createWindow().

◆ m_type

std::string FWGUIEventDataAdder::m_type
private

Definition at line 86 of file FWGUIEventDataAdder.h.

Referenced by addNewItem(), newIndexSelected(), and windowIsClosing().

FWTableWidget::SetBackgroundColor
void SetBackgroundColor(Pixel_t) override
Definition: FWTableWidget.cc:173
FWJobMetadataManager::processNamesInJob
std::vector< std::string > & processNamesInJob()
Definition: FWJobMetadataManager.h:32
fwLog
#define fwLog(_level_)
Definition: fwLog.h:45
FWTableManagerBase::sort
void sort(int iCol, bool iSortOrder)
Call to have table sorted on values in column iCol with the sort order being descending if iSortOrder...
Definition: FWTableManagerBase.cc:54
FWEventItemsManager::add
FWEventItem * add(const FWPhysicsObjectDesc &iItem, const FWConfiguration *pbConf=nullptr, bool doSetEvent=true)
Definition: FWEventItemsManager.cc:77
FWGUIEventDataAdder::m_metadataManager
FWJobMetadataManager * m_metadataManager
Definition: FWGUIEventDataAdder.h:74
FWGUIEventDataAdder::m_productInstanceLabel
std::string m_productInstanceLabel
Definition: FWGUIEventDataAdder.h:88
DataAdderTableManager::sortWithFilter
virtual void sortWithFilter(const char *filter)
Definition: FWGUIEventDataAdder.cc:81
FWGUIEventDataAdder::m_name
TGTextEntry * m_name
Definition: FWGUIEventDataAdder.h:78
FWGUIEventDataAdder::m_purpose
std::string m_purpose
Definition: FWGUIEventDataAdder.h:84
FWGUIEventDataAdder::windowIsClosing
void windowIsClosing()
Definition: FWGUIEventDataAdder.cc:424
FWGUIEventDataAdder::m_search
TGTextEntry * m_search
Definition: FWGUIEventDataAdder.h:82
FWGUIEventDataAdder::addNewItem
void addNewItem()
Definition: FWGUIEventDataAdder.cc:360
mps_check.msg
tuple msg
Definition: mps_check.py:285
FWGUIEventDataAdder::m_doNotUseProcessName
TGCheckButton * m_doNotUseProcessName
Definition: FWGUIEventDataAdder.h:79
FWTableWidget::disableGrowInWidth
void disableGrowInWidth()
Definition: FWTableWidget.cc:498
FWGUIEventDataAdder::m_applyAndClose
TGTextButton * m_applyAndClose
Definition: FWGUIEventDataAdder.h:81
FWDialogBuilder
Definition: FWDialogBuilder.h:93
DataAdderTableManager::reset
void reset()
Definition: FWGUIEventDataAdder.cc:128
str
#define str(s)
Definition: TestProcessor.cc:48
FWGUIEventDataAdder::newIndexSelected
void newIndexSelected(int)
Definition: FWGUIEventDataAdder.cc:534
TrackingMonitor_cfi.metadata
metadata
Definition: TrackingMonitor_cfi.py:71
DataAdderTableManager
Definition: FWGUIEventDataAdder.cc:70
FWGUIEventDataAdder::m_moduleLabel
std::string m_moduleLabel
Definition: FWGUIEventDataAdder.h:87
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FWGUIEventDataAdder::metadataUpdatedSlot
void metadataUpdatedSlot(void)
Definition: FWGUIEventDataAdder.cc:525
FWGUIEventDataAdder::m_type
std::string m_type
Definition: FWGUIEventDataAdder.h:86
FWTableManagerBase::dataChanged
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes.
Definition: FWTableManagerBase.cc:63
FWJobMetadataManager::metadataChanged_
sigc::signal< void > metadataChanged_
Definition: FWJobMetadataManager.h:54
FWGUIEventDataAdder::m_tableManager
DataAdderTableManager * m_tableManager
Definition: FWGUIEventDataAdder.h:93
FWPhysicsObjectDesc
Definition: FWPhysicsObjectDesc.h:30
FWEventItemsManager::end
const_iterator end() const
Definition: FWEventItemsManager.cc:300
FWDisplayProperties::defaultProperties
static const FWDisplayProperties defaultProperties
Definition: FWDisplayProperties.h:30
FWEventItemsManager::find
const FWEventItem * find(const std::string &iName) const
Definition: FWEventItemsManager.cc:304
FWEventItemsManager::const_iterator
std::vector< FWEventItem * >::const_iterator const_iterator
Definition: FWEventItemsManager.h:50
fwlog::kWarning
Definition: fwLog.h:35
FWGUIEventDataAdder::m_frame
TGTransientFrame * m_frame
Definition: FWGUIEventDataAdder.h:77
FWGUIEventDataAdder::m_apply
TGTextButton * m_apply
Definition: FWGUIEventDataAdder.h:80
SimL1EmulatorRepack_CalouGT_cff.processName
processName
Definition: SimL1EmulatorRepack_CalouGT_cff.py:17
DataAdderTableManager::setSelection
void setSelection(int row, int mask)
Definition: FWGUIEventDataAdder.cc:113
FWEventItemsManager::begin
const_iterator begin() const
NOTE: iterator is allowed to return a null object for items that have been removed.
Definition: FWEventItemsManager.cc:299
FWTableWidget::SetLineSeparatorColor
void SetLineSeparatorColor(Pixel_t)
Definition: FWTableWidget.cc:209
FWGUIEventDataAdder::m_tableWidget
FWTableWidget * m_tableWidget
Definition: FWGUIEventDataAdder.h:94
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
FWGUIEventDataAdder::m_manager
FWEventItemsManager * m_manager
Definition: FWGUIEventDataAdder.h:73
FWTableWidget::SetHeaderBackgroundColor
void SetHeaderBackgroundColor(Pixel_t)
Definition: FWTableWidget.cc:188
FWJobMetadataManager::usableData
std::vector< Data > & usableData()
Definition: FWJobMetadataManager.h:31
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
DataAdderTableManager::indexSelected_
sigc::signal< void, int > indexSelected_
Definition: FWGUIEventDataAdder.cc:137
HerwigMaxPtPartonFilter_cfi.moduleLabel
moduleLabel
Definition: HerwigMaxPtPartonFilter_cfi.py:4
FWGUIEventDataAdder::m_processName
std::string m_processName
Definition: FWGUIEventDataAdder.h:89
FWGUIEventDataAdder::createWindow
void createWindow()
Definition: FWGUIEventDataAdder.cc:444
FWGUIEventDataAdder::m_parentFrame
TGFrame * m_parentFrame
Definition: FWGUIEventDataAdder.h:76