Changeset 16767 for trunk/Cosy


Ignore:
Timestamp:
06/07/13 23:36:52 (11 years ago)
Author:
tbretz
Message:
Do not print the string in the RADEC command; added a cast to allow for compilation with c++0x
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cosy/tcpip/MDriveCom.cc

    r12599 r16767  
    1414#include "MLogManip.h"
    1515
     16#define FACT
     17
    1618using namespace std;
    1719
     
    6062    }
    6163
    62     gLog << all << "CC-COMMAND " << MTime(-1) << " RADEC " << ra << "h " << dec << "d '" << str << "'" << endl;
     64    gLog << all << "CC-COMMAND " << MTime(-1) << " RADEC " << ra << "h " << dec << "d" << endl;
    6365
    6466    ra *= 15; // h -> deg
     
    167169    }
    168170
    169     Double_t data[3] = { id, offset, angle };
     171    Double_t data[3] = { (double)id, offset, angle };
    170172
    171173    //cout << "MDriveCom - CELEST... start." << endl;
Note: See TracChangeset for help on using the changeset viewer.