|
| void | add_cut (cut_handle_type &) |
| | Add a cut in the list of cut handle. More...
|
| |
| | i_multi_cut (datatools::logger::priority a_logging_priority=datatools::logger::PRIO_FATAL) |
| | Constructor. More...
|
| |
| virtual | ~i_multi_cut () |
| | Destructor. More...
|
| |
| virtual void | initialize (const datatools::properties &, datatools::service_manager &, cuts::cut_handle_dict_type &) |
| | Initialization. More...
|
| |
| virtual void | export_to_config (datatools::properties &config_, uint32_t flags_=i_cut::EXPORT_CONFIG_DEFAULT, const std::string &prefix_="") const |
| | Export to a container of properties. More...
|
| |
| virtual void | reset () |
| | Reset. More...
|
| |
| bool | is_debug () const |
| | Check if logging priority is at least at debug level. More...
|
| |
| bool | has_name () const |
| | Check if the name of the cut is set. More...
|
| |
| void | set_name (const std::string &a_name) |
| | Set the name of the cut. More...
|
| |
| const std::string & | get_name () const |
| | Return the name of the cut. More...
|
| |
| bool | has_description () const |
| | Check if the description of the cut is set. More...
|
| |
| const std::string & | get_description () const |
| | Return the description of the cut. More...
|
| |
| void | set_description (const std::string &a_description) |
| | Set the description of the cut. More...
|
| |
| bool | has_version () const |
| | Check if the version of the cut is set. More...
|
| |
| const std::string & | get_version () const |
| | Return the version of the cut. More...
|
| |
| void | set_version (const std::string &a_version) |
| | Return the version of the cut. More...
|
| |
| bool | is_initialized () const |
| | Check initialization status. More...
|
| |
| bool | has_user_data () const |
| | Check if some user data is referenced. More...
|
| |
| template<class T > |
| void | set_user_data (const T &obj_) |
| | Set user data. More...
|
| |
| template<class T > |
| bool | is_user_data () const |
| | Check user data type. More...
|
| |
| template<class T > |
| const T & | get_user_data () const |
| | Get user data of given type. More...
|
| |
| template<class T > |
| void | register_supported_user_data_type () |
| | Register user data type is supported. More...
|
| |
| template<class T > |
| void | unregister_supported_user_data_type () |
| | Unregister user data type is supported. More...
|
| |
| template<class T > |
| bool | is_user_data_type_supported () const |
| | Check if data type is supported. More...
|
| |
| bool | is_user_data_type_supported (const std::type_info &tinfo_) const |
| | Check if a data type is supported. More...
|
| |
| void | reset_user_data () |
| | Clear the referenced user data. More...
|
| |
| virtual void | initialize_simple () |
| | Naked initialization method (default implementation,. More...
|
| |
| virtual void | initialize_standalone (const datatools::properties &a_config) |
| | Initialization method through a container of configuration properties (default implementation,. More...
|
| |
| virtual void | initialize_with_service_only (const datatools::properties &a_config, datatools::service_manager &a_service_manager) |
| |
| virtual void | initialize_without_service (const datatools::properties &a_config, cut_handle_dict_type &a_cut_dictionary) |
| |
| virtual int | process () |
| |
| int | operator() () |
| | Function interface for the selection method. More...
|
| |
| | i_cut (datatools::logger::priority p=datatools::logger::PRIO_FATAL) |
| | Constructor. More...
|
| |
| virtual | ~i_cut () |
| | Destructor. More...
|
| |
| virtual void | tree_dump (std::ostream &a_out=std::clog, const std::string &a_title="", const std::string &a_indent="", bool a_inherit=false) const |
| | Smart print. More...
|
| |
| void | print (std::ostream &a_out=std::clog) const |
| | Print shortcut. More...
|
| |
| void | set_logging_priority (datatools::logger::priority p) |
| | Set the logging priority threshold. More...
|
| |
| datatools::logger::priority | get_logging_priority () const |
| | Get the logging priority threshold. More...
|
| |
| size_t | get_number_of_accepted_entries () const |
| | Return the number of entries accepted by the cut. More...
|
| |
| size_t | get_number_of_rejected_entries () const |
| | Return the number of entries rejected by the cut. More...
|
| |
| size_t | get_number_of_processed_entries () const |
| | Return the total number of entries processed by the cut. More...
|
| |
| void | reset_counters () |
| | Reset the embedded counters. More...
|
| |
| bool | is_activated_counters () const |
| | Check the flag to activate counters. More...
|
| |
| void | set_activated_counters (bool) |
| | Set the flag to activate statistics. More...
|
| |
| virtual std::string | get_type_id () const =0 |
| | Return the unique type identifier associated to the class of the cut object. More...
|
| |
| | i_tree_dumpable () |
| | Constructor. More...
|
| |
| virtual | ~i_tree_dumpable () |
| | Destructor. More...
|
| |
| virtual void | print_tree (std::ostream &out_=std::clog, const boost::property_tree::ptree &options_=empty_options()) const |
| | Main new interface method for printing. More...
|
| |
| void | print_tree_json (std::ostream &out_=std::clog, const std::string &json_options_="") const |
| | Printing with jsonized options. More...
|
| |
| void | print_tree_json (std::ostream &out_=std::clog, const char *json_options_=nullptr) const |
| | Printing with jsonized options. More...
|
| |
| void | tree_dump_id (const int out_type_=OSTREAM_CLOG, const std::string &title_="", const std::string &indent_="", const bool inherit_=false) const |
| |
| void | tree_print_id (const int out_type_=OSTREAM_CLOG, const std::string &title_="") const |
| |
| void | smart_print_id (const int out_type_=OSTREAM_CLOG, const std::string &title_="", const std::string &indent_="") const |
| |
The abstract base class for multi cuts.