Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/g4tools/include/tools/sg/event_action

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /externals/g4tools/include/tools/sg/event_action (Version 11.3.0) and /externals/g4tools/include/tools/sg/event_action (Version 9.6)


  1 // Copyright (C) 2010, Guy Barrand. All rights    
  2 // See the file tools.license for terms.          
  3                                                   
  4 #ifndef tools_sg_event_action                     
  5 #define tools_sg_event_action                     
  6                                                   
  7 #include "matrix_action"                          
  8                                                   
  9 #include "event"                                  
 10                                                   
 11 namespace tools {                                 
 12 namespace sg {                                    
 13                                                   
 14 class event_action : public matrix_action {       
 15   TOOLS_ACTION(event_action,tools::sg::event_a    
 16 public:                                           
 17   event_action(std::ostream& a_out,unsigned in    
 18   :matrix_action(a_out,a_ww,a_wh)                 
 19   ,m_event(a_event)                               
 20   ,m_do_switch_children(false)                    
 21                                                   
 22   ,m_done(false)                                  
 23   {}                                              
 24   virtual ~event_action(){}                       
 25 public:                                           
 26   event_action(const event_action& a_from)        
 27   :matrix_action(a_from)                          
 28   ,m_event(a_from.m_event)                        
 29   ,m_do_switch_children(a_from.m_do_switch_chi    
 30                                                   
 31   ,m_done(false)                                  
 32   {}                                              
 33   event_action& operator=(const event_action&     
 34     matrix_action::operator=(a_from);             
 35     m_do_switch_children = a_from.m_do_switch_    
 36                                                   
 37     m_done = false;                               
 38     return *this;                                 
 39   }                                               
 40 public:                                           
 41   void reset() {                                  
 42     matrix_action::reset();                       
 43     m_done = false;                               
 44   }                                               
 45                                                   
 46   const event& get_event() const {return m_eve    
 47   event& get_event() {return m_event;}            
 48                                                   
 49   void set_done(bool a_value) {m_done = a_valu    
 50   bool done() const {return m_done;}              
 51                                                   
 52   void set_do_switch_children(bool a_value) {m    
 53   bool do_switch_children() const {return m_do    
 54 protected:                                        
 55   event& m_event;                                 
 56   bool m_do_switch_children;                      
 57   bool m_done;                                    
 58 };                                                
 59                                                   
 60 }}                                                
 61                                                   
 62 #endif