Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
690b18b9
Commit
690b18b9
authored
Apr 16, 2018
by
Simon Spannagel
Browse files
Document Module.hpp
parent
71318e55
Pipeline
#358933
passed with stages
in 5 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core/module/Module.hpp
View file @
690b18b9
...
...
@@ -74,6 +74,18 @@ namespace corryvreckan {
Module
(
const
Module
&
)
=
delete
;
Module
&
operator
=
(
const
Module
&
)
=
delete
;
/**
* @brief Get the name of this module
* @return Name of the module
*/
std
::
string
getName
()
{
return
m_name
;
}
/**
* @brief Get the configuration for this module
* @return Reference to the configuration of this module
*/
Configuration
&
getConfig
()
{
return
m_config
;
}
/**
* @brief Initialise the module before the event sequence
*
...
...
@@ -98,23 +110,45 @@ namespace corryvreckan {
*/
virtual
void
finalise
(){};
// Methods to get member variables
std
::
string
getName
()
{
return
m_name
;
}
Configuration
getConfig
()
{
return
m_config
;
}
protected:
// Member variables
std
::
string
m_name
;
// Configuration of this module
Configuration
m_config
;
/**
* @brief Get list of all detectors this module acts on
* @return List of all detectors for this module
*/
std
::
vector
<
Detector
*>
get_detectors
()
{
return
m_detectors
;
};
/**
* @brief Get the number of detectors this module takes care of
* @return Number of detectors to act on
*/
std
::
size_t
num_detectors
()
{
return
m_detectors
.
size
();
};
/**
* @brief Get a specific detector, identified by its name
* @param name Name of the detector to retrieve
* @return Pointer to the requested detector
* @throws ModuleError if detector with given name is not found for this module
*/
Detector
*
get_detector
(
std
::
string
name
);
/**
* @brief Check if this module should act on a given detector
* @param name Name of the detector to check
* @return True if detector is known to this module, false if detector is unknown.
*/
bool
has_detector
(
std
::
string
name
);
private:
// Name of the module
std
::
string
m_name
;
// List of detectors to act on
std
::
vector
<
Detector
*>
m_detectors
;
};
}
// namespace corryvreckan
#endif // CORRYVRECKAN_MODULE_H
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment