#include "EventDisplayBase/ScanCat.h"#include <cstdlib>#include "TGLayout.h"#include "TGButton.h"#include "TGLabel.h"#include "TGTextEntry.h"#include "EventDisplayBase/evdb.h"#include "EventDisplayBase/IoModule.h"#include "EventDataModel/EventHandle.h"#include "EventDataModel/EventHeader.h"Go to the source code of this file.
Functions | |
| void | GetEventNumbers (int &run, int &event) |
|
||||||||||||
|
Definition at line 27 of file ScanCat.cxx. References edm::EventHeader::Event(), edm::EventHandle::Header(), and edm::EventHeader::Run(). Referenced by evdb::GoToDialog::GoToDialog(), and evdb::ScanCat::NextEvt().
00028 {
00029 // Grad the header out of the event
00030 edm::EventHandle& evt = IoModule::Instance()->GetEvent();
00031 edm::EventHeader& head = evt.Header();
00032
00033 run = head.Run();
00034 event = head.Event();
00035 }
|
1.3.5