| Report problems to ATLAS LXR Team (with time and IP address indicated) |
|
[ source navigation ] [ diff markup ] [ identifier search ] [ general search ] |
||||
|
||||||
| Links to LXR source navigation pages for stable releases | [ 12.*.* ] [ 13.*.* ] [ 14.*.* ] [ 15.*.* ] | |||||
001 002 #include "GaudiAlg/GaudiAlgorithm.h" 003 #include "GaudiKernel/Property.h" 004 005 class Prescaler:public GaudiAlgorithm 006 { 007 008 public: 009 010 /** 011 ** Constructor(s) 012 **/ 013 Prescaler( const std::string& name, ISvcLocator* pSvcLocator ); 014 015 /** 016 ** Destructor 017 **/ 018 ~Prescaler( ); 019 020 /***************************** 021 ** Public Function Members ** 022 *****************************/ 023 024 StatusCode initialize(); 025 StatusCode execute(); 026 StatusCode finalize(); 027 028 private: 029 030 /************************** 031 ** Private Data Members ** 032 **************************/ 033 034 /** 035 ** Percentage of events that should be passed 036 **/ 037 DoubleProperty m_percentPass; 038 039 /** 040 ** Number of events passed 041 **/ 042 int m_pass; 043 044 /** 045 ** Number of events seen 046 **/ 047 int m_seen; 048 };
| [ source navigation ] | [ diff markup ] | [ identifier search ] | [ general search ] |
| Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems | |
| This page was automatically generated by the LXR engine. |
|