first almost feature complete version of musrFT

This commit is contained in:
2015-02-13 16:56:19 +01:00
parent d4ba2f6d81
commit 2d2594c903
12 changed files with 1900 additions and 275 deletions

View File

@@ -40,14 +40,15 @@ using namespace std;
//----------------------------------------------------------------------------
/**
* <p>
* <p>Data structure holding raw time domain uSR data together with some
* necessary meta information.
*/
typedef struct {
TString info; //< keeps all the meta information
double timeResolution; //< time resolution in (usec)
int t0; //< keep the t0 bin
Double_t timeRange[2]; //< time range to be used, given in (usec).
PDoubleVector rawData; //< a single time domain data vector
TString info; ///< keeps all the meta information
double timeResolution; ///< time resolution in (usec)
int t0; ///< keep the t0 bin
Double_t timeRange[2]; ///< time range to be used, given in (usec).
PDoubleVector rawData; ///< a single time domain data vector
} musrFT_data;
//----------------------------------------------------------------------------