#ifndef CTDR_SIGNAL_H_DEF
#define CTDR_SIGNAL_H_DEF
#include "TGraph.h"
#include "TString.h"
#include "TCanvas.h"
#include "TMultiGraph.h"
class CTDR_Signal: public TObject {
private :
double *Vx;
double *Vy;
double *t;
TGraph *sigx;
TGraph *sigy;
int Channel;
int N;
public :
CTDR_Signal();
CTDR_Signal(TString nomFichier,int Channel=0);
CTDR_Signal(double *t,double *Vx,double *Vy,int N, int Channel);
void operator+=(CTDR_Signal another);
void operator=(CTDR_Signal another);
void Trace();
TGraph* GetGraphX();
TGraph* GetGraphY();
double* GetVx();
double* GetVy();
double* Gett();
int GetN();
int GetChannel();
ClassDef(CTDR_Signal,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.