Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Base DAQ
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BIAS
DAQs
Base DAQ
Compare revisions
8c5feee7fada86a6ed4c618dd127878b5286999d to ce99aaa20706cca85200a375cee63d7414cebb74
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
bias/daqs/base-daq
Select target project
No results found
ce99aaa20706cca85200a375cee63d7414cebb74
Select Git revision
Branches
main
Tags
v1.0
Swap
Target
bias/daqs/base-daq
Select target project
bias/daqs/base-daq
1 result
8c5feee7fada86a6ed4c618dd127878b5286999d
Select Git revision
Branches
main
Tags
v1.0
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fix automatic obs registration
· cdaeeecf
Valerio Pastore
authored
1 year ago
cdaeeecf
removed useless is_closed
· ce99aaa2
Valerio Pastore
authored
1 year ago
ce99aaa2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/Base_Archiver.h
+0
-1
0 additions, 1 deletion
include/Base_Archiver.h
include/Base_DAQ_Observer.h
+0
-1
0 additions, 1 deletion
include/Base_DAQ_Observer.h
with
0 additions
and
2 deletions
include/Base_Archiver.h
View file @
ce99aaa2
...
...
@@ -27,7 +27,6 @@ public:
virtual
int
open
()
=
0
;
virtual
int
close
()
=
0
;
virtual
bool
is_open
()
=
0
;
virtual
bool
is_closed
()
=
0
;
virtual
void
setDest
(
std
::
string
dest
)
=
0
;
virtual
void
updateDest
()
=
0
;
virtual
std
::
string
getDest
()
=
0
;
...
...
This diff is collapsed.
Click to expand it.
include/Base_DAQ_Observer.h
View file @
ce99aaa2
...
...
@@ -18,7 +18,6 @@ protected:
public:
BaseDAQ_Observer
(
inaf
::
oasbo
::
DAQ
::
BaseDAQ
&
dataAcquisition
)
{
this
->
dataAcquisition
=
&
dataAcquisition
;
this
->
dataAcquisition
->
registerObserver
(
this
);
}
virtual
~
BaseDAQ_Observer
()
{
...
...
This diff is collapsed.
Click to expand it.