| 5 |
#ifndef trklevel0_h |
#ifndef trklevel0_h |
| 6 |
#define trklevel0_h |
#define trklevel0_h |
| 7 |
|
|
| 8 |
|
#include <TGraph.h> |
| 9 |
|
|
| 10 |
#include <TObject.h> |
#include <TObject.h> |
| 11 |
#include <physics/tracker/TrackerEvent.h> |
#include <physics/tracker/TrackerEvent.h> |
| 12 |
#include <TrkStruct.h> |
#include <TrkParams.h> |
| 13 |
|
//#include <TrkStruct.h> |
| 14 |
|
|
| 15 |
using namespace pamela::tracker; |
using namespace pamela::tracker; |
| 16 |
|
|
| 17 |
/** |
/** |
| 18 |
* \brief Class to describe tracker LEVEL0 data. |
* \brief Class to describe tracker LEVEL0 data. |
| 19 |
* |
* |
|
* It inherits from YODA TrackerEvent class and add some methods. |
|
| 20 |
*/ |
*/ |
| 21 |
|
|
| 22 |
class TrkLevel0 : public TrackerEvent{ |
//class TrkLevel0 : public TrackerEvent{ |
| 23 |
|
class TrkLevel0 : public TObject{ |
| 24 |
|
|
| 25 |
private: |
private: |
| 26 |
|
|
| 27 |
|
TrackerEvent* yodaobj; |
| 28 |
|
|
| 29 |
public: |
public: |
| 30 |
|
|
| 31 |
void GetCommonVar(cTrkLevel0 *); |
TrkLevel0(){ yodaobj = 0; }; |
| 32 |
|
~TrkLevel0(){ if(yodaobj) delete yodaobj; }; |
| 33 |
|
void Set(){ yodaobj = new TrackerEvent(); }; |
| 34 |
|
|
| 35 |
|
void GetLevel0Struct(cTrkLevel0 *); |
| 36 |
|
void SetFromLevel0Struct(cTrkLevel0 *); |
| 37 |
|
void GetLevel0Struct(){ GetLevel0Struct(&level0event_); }; |
| 38 |
|
void SetFromLevel0Struct(){ SetFromLevel0Struct(&level0event_); }; |
| 39 |
|
|
| 40 |
|
bool FillADC(); |
| 41 |
|
bool GetCalibratedEvent( int, TGraph* ); |
| 42 |
|
bool GetCalibratedEvent( int iview){ return GetCalibratedEvent(iview,NULL); }; |
| 43 |
|
|
| 44 |
|
void* GetPointerToTrackerEvent(){ return &yodaobj; }; |
| 45 |
|
TrackerEvent* GetTrackerEvent(){ return yodaobj; } |
| 46 |
|
int ProcessEvent(); |
| 47 |
|
void Decode(int from,int to,bool &COMPRESSED,bool &FULL, int* datacomp, int* datafull); |
| 48 |
|
bool GetFullEvent(int iview, TGraph* graph); |
| 49 |
|
bool GetCompressedEvent(int iview, TGraph* graph); |
| 50 |
|
bool GetUnCompressedEvent(int iview, TGraph* graph); |
| 51 |
|
bool GetSigma(int iview, TGraph* graph); |
| 52 |
|
|
| 53 |
|
ClassDef(TrkLevel0,1); |
| 54 |
|
|
| 55 |
|
}; |
| 56 |
|
|
| 57 |
|
/** |
| 58 |
|
* \brief Struct to decode tracker words |
| 59 |
|
* |
| 60 |
|
*/ |
| 61 |
|
typedef struct trkword{ |
| 62 |
|
int type; |
| 63 |
|
int decode; |
| 64 |
}; |
}; |
| 65 |
|
|
| 66 |
#endif |
#endif |