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 {
// Set up the client side of a connection.
// Upon the first send or receive it connects to the server
// 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
// where a server is started a bit later than a client.
SocketConnection (const std::string& hostName, const std::string& port);
......
......@@ -69,6 +69,10 @@ namespace LOFAR { namespace CEP {
void setFileName (const std::string& 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.
void changeBaseName (const string& newBaseName);
......@@ -109,6 +113,8 @@ namespace LOFAR { namespace CEP {
{ return itsFileName; }
const std::string& getFileSys() const
{ return itsFileSys; }
const std::string& getClusterDescName() const
{ return itsCDescName; }
double getStartTime() const
{ return itsStartTime; }
double getEndTime() const
......@@ -139,6 +145,7 @@ namespace LOFAR { namespace CEP {
std::string itsName; //# full name of the VDS desc
std::string itsFileName; //# full name of the VDS (data set name)
std::string itsFileSys; //# name of file system the VDS resides on
std::string itsCDescName; //# name of ClusterDesc file used
double itsStartTime;
double itsEndTime;
double itsStepTime;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment