Skip to content
Snippets Groups Projects
Commit b4e48d8f authored by Ger van Diepen's avatar Ger van Diepen
Browse files

bug 1314:

Updated comments
parent 5a6d2e08
No related branches found
No related tags found
No related merge requests found
...@@ -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);
......
...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment