DD4hep  1.30.0
Detector Description Toolkit for High Energy Physics
EvNavHandler.h
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 //==========================================================================
11 
12 #ifndef UTILITYAPPS_SRC_EVNAVHANDLER_H
13 #define UTILITYAPPS_SRC_EVNAVHANDLER_H
14 
15 // Forward declarations
16 void next_event() ;
17 
18 // Do not clutter global namespace
19 namespace {
20 
21  class EvNavHandler {
22  public:
23  void Fwd() {
24  next_event();
25  }
26  void Bck() {}
27  };
28 }
29 #endif
30 
31 
next_event
void next_event()
Definition: next_event_dummy.cpp:19