Bayeux  3.4.1
Core Foundation library for SuperNEMO
nor_cut.h
Go to the documentation of this file.
1 /* Author(s) : Francois Mauger <mauger@lpccaen.in2p3.fr>
3  * Creation date: 2010-09-18
4  * Last modified: 2013-05-16
5  *
6  * License:
7  *
8  * Description:
9  * NOR binary cut
10  *
11  * History:
12  *
13  */
14 
15 #ifndef CUTS_NOR_CUT_H
16 #define CUTS_NOR_CUT_H 1
17 
18 // This project:
19 #include <cuts/i_binary_cut.h>
20 
21 namespace cuts {
22 
24  class nor_cut : public i_binary_cut
25  {
26 
27  public:
28 
30  nor_cut(datatools::logger::priority a_logging_priority =
32 
34  virtual ~nor_cut();
35 
36  protected :
37 
39  virtual int _accept();
40 
41  private:
42 
45 
46  };
47 
48 } // end of namespace cuts
49 
50 #endif // CUTS_NOR_CUT_H
51 
52 // Local Variables: --
53 // mode: c++ --
54 // c-file-style: "gnu" --
55 // tab-width: 2 --
56 // End: --
virtual int _accept()
Selection.
priority
Priority levels for logging from most to least critical.
Definition: logger.h:82
nor_cut(datatools::logger::priority a_logging_priority=datatools::logger::PRIO_FATAL)
Constructor.
A fatal error. The application will most likely terminate. This is the highest priority.
Definition: logger.h:85
Top-level namespace of the Bayeux/cuts module library.
Definition: accept_cut.h:21
virtual ~nor_cut()
Destructor.
The NOR binary cut.
Definition: nor_cut.h:24
The abstract base class for binary cuts.
Definition: i_binary_cut.h:31
#define CUT_REGISTRATION_INTERFACE(T)
Definition: i_cut.h:411