Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sds
HEP
HEPnOS
Commits
04c4bcbf
Commit
04c4bcbf
authored
May 24, 2018
by
Matthieu Dorier
Browse files
added typedef value_type in all containers
parent
cda9777b
Changes
5
Hide whitespace changes
Inline
Side-by-side
include/hepnos/DataSet.hpp
View file @
04c4bcbf
...
...
@@ -59,6 +59,8 @@ class DataSet : public KeyValueContainer {
public:
typedef
DataSet
value_type
;
/**
* @brief Default constructor.
*/
...
...
include/hepnos/DataStore.hpp
View file @
04c4bcbf
...
...
@@ -32,6 +32,7 @@ class DataStore {
public:
typedef
DataSet
value_type
;
/**
* @brief Constructor. Initializes the DataStore by taking
...
...
include/hepnos/Run.hpp
View file @
04c4bcbf
...
...
@@ -40,6 +40,8 @@ class Run : public KeyValueContainer {
public:
typedef
SubRun
value_type
;
/**
* @brief Default constructor. Creates a Run instance such that run.valid() is false.
*/
...
...
include/hepnos/RunSet.hpp
View file @
04c4bcbf
...
...
@@ -42,6 +42,8 @@ class RunSet {
public:
typedef
Run
value_type
;
/**
* @brief Copy-constructor. Deleted.
*
...
...
include/hepnos/SubRun.hpp
View file @
04c4bcbf
...
...
@@ -37,6 +37,8 @@ class SubRun : public KeyValueContainer {
public:
typedef
Event
value_type
;
/**
* @brief Default constructor. Creates a SubRun instance such that subrun.valid() is false.
*/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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