Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
b4e48d8f
Commit
b4e48d8f
authored
16 years ago
by
Ger van Diepen
Browse files
Options
Downloads
Patches
Plain Diff
bug 1314:
Updated comments
parent
5a6d2e08
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CEP/Imager/MWCommon/include/MWCommon/SocketConnection.h
+1
-1
1 addition, 1 deletion
CEP/Imager/MWCommon/include/MWCommon/SocketConnection.h
CEP/Imager/MWCommon/include/MWCommon/VdsPartDesc.h
+7
-0
7 additions, 0 deletions
CEP/Imager/MWCommon/include/MWCommon/VdsPartDesc.h
with
8 additions
and
1 deletion
CEP/Imager/MWCommon/include/MWCommon/SocketConnection.h
+
1
−
1
View file @
b4e48d8f
...
@@ -54,7 +54,7 @@ namespace LOFAR { namespace CEP {
...
@@ -54,7 +54,7 @@ namespace LOFAR { namespace CEP {
// Set up the client side of a connection.
// Set up the client side of a connection.
// Upon the first send or receive it connects to the server
// Upon the first send or receive it connects to the server
// on the given host and port.
// on the given host and port.
// If
the
making the connection fails, it will sleep one second and try
// If making the connection fails, it will sleep one second and try
// again for up to 60 attempts. In this way the case is handled
// again for up to 60 attempts. In this way the case is handled
// where a server is started a bit later than a client.
// where a server is started a bit later than a client.
SocketConnection
(
const
std
::
string
&
hostName
,
const
std
::
string
&
port
);
SocketConnection
(
const
std
::
string
&
hostName
,
const
std
::
string
&
port
);
...
...
This diff is collapsed.
Click to expand it.
CEP/Imager/MWCommon/include/MWCommon/VdsPartDesc.h
+
7
−
0
View file @
b4e48d8f
...
@@ -69,6 +69,10 @@ namespace LOFAR { namespace CEP {
...
@@ -69,6 +69,10 @@ namespace LOFAR { namespace CEP {
void
setFileName
(
const
std
::
string
&
name
)
void
setFileName
(
const
std
::
string
&
name
)
{
itsFileName
=
name
;
}
{
itsFileName
=
name
;
}
// Set the name of the ClusterDesc file used.
void
setClusterDescName
(
const
std
::
string
&
cdName
)
{
itsCDescName
=
cdName
;
}
// Change the base part of the name.
// Change the base part of the name.
void
changeBaseName
(
const
string
&
newBaseName
);
void
changeBaseName
(
const
string
&
newBaseName
);
...
@@ -109,6 +113,8 @@ namespace LOFAR { namespace CEP {
...
@@ -109,6 +113,8 @@ namespace LOFAR { namespace CEP {
{
return
itsFileName
;
}
{
return
itsFileName
;
}
const
std
::
string
&
getFileSys
()
const
const
std
::
string
&
getFileSys
()
const
{
return
itsFileSys
;
}
{
return
itsFileSys
;
}
const
std
::
string
&
getClusterDescName
()
const
{
return
itsCDescName
;
}
double
getStartTime
()
const
double
getStartTime
()
const
{
return
itsStartTime
;
}
{
return
itsStartTime
;
}
double
getEndTime
()
const
double
getEndTime
()
const
...
@@ -139,6 +145,7 @@ namespace LOFAR { namespace CEP {
...
@@ -139,6 +145,7 @@ namespace LOFAR { namespace CEP {
std
::
string
itsName
;
//# full name of the VDS desc
std
::
string
itsName
;
//# full name of the VDS desc
std
::
string
itsFileName
;
//# full name of the VDS (data set name)
std
::
string
itsFileName
;
//# full name of the VDS (data set name)
std
::
string
itsFileSys
;
//# name of file system the VDS resides on
std
::
string
itsFileSys
;
//# name of file system the VDS resides on
std
::
string
itsCDescName
;
//# name of ClusterDesc file used
double
itsStartTime
;
double
itsStartTime
;
double
itsEndTime
;
double
itsEndTime
;
double
itsStepTime
;
double
itsStepTime
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment