22 |
*/ |
*/ |
23 |
std::string NeutronDetectorReader::GetVersionInfo(void) const { |
std::string NeutronDetectorReader::GetVersionInfo(void) const { |
24 |
return |
return |
25 |
"$Header: /home/cvsmanager/yoda/techmodel/physics/NeutronDetectorReader.cpp,v 2.1 2004/09/22 13:14:31 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/NeutronDetectorReader.cpp,v 2.3 2005/01/13 14:50:01 kusanagi Exp $"; |
26 |
} |
} |
27 |
|
|
28 |
/** |
/** |
29 |
* Initialize the algorithm with a special run. This will initialize the |
* Initialize the algorithm with a special run. This will initialize the |
30 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
31 |
|
* For definition the definition for Neutron detector data is located in the |
32 |
|
* end of the physics packet. |
33 |
|
* More explicitely the neutronData is composed by 4 bytes; |
34 |
|
* a pattern 00 0F TR BK |
35 |
|
* where: |
36 |
|
* 00 0f is a fixed pattern |
37 |
|
* TR is the NeutronCounter for a trigger event |
38 |
|
* BK is the NeutronCounter beetween two trigger events |
39 |
*/ |
*/ |
40 |
void NeutronDetectorReader::Init(PamelaRun *run) { |
void NeutronDetectorReader::Init(PamelaRun *run) { |
41 |
logger->debug(_T("Initialize")); |
logger->debug(_T("Initialize")); |
65 |
for (int i = 0; i < 3; i++){ |
for (int i = 0; i < 3; i++){ |
66 |
offset = lenNeutronData - 4*i; |
offset = lenNeutronData - 4*i; |
67 |
rec = new(recs[i]) NeutronRecord(); //aggiungo un nuovo NeutronRecord all'evento |
rec = new(recs[i]) NeutronRecord(); //aggiungo un nuovo NeutronRecord all'evento |
68 |
rec->upperTrig = (((BYTE)data[lenght-offset])>>4); |
rec->upperTrig = (((UINT8)data[lenght-offset])>>4); |
69 |
rec->bottomTrig = (((BYTE)data[lenght-offset])&0x0F); |
rec->bottomTrig = (((UINT8)data[lenght-offset])&0x0F); |
70 |
rec->upperBack = (((BYTE)data[lenght-offset+1])>>4); |
rec->upperBack = (((UINT8)data[lenght-offset+1])>>4); |
71 |
rec->bottomBack = (((BYTE)data[lenght-offset+1])&0x0F); |
rec->bottomBack = (((UINT8)data[lenght-offset+1])&0x0F); |
72 |
} |
} |
73 |
|
neutronEvent->unpackError = 0; |
74 |
|
} else { |
75 |
|
neutronEvent->unpackError = 1; |
76 |
} |
} |
77 |
delete[] data; |
delete[] data; |
78 |
} |
} |
79 |
|
|
80 |
/* For definition the definition for Neutron detector data is |
|
|
* "The last data bunch in the phyics packet" */ |
|
81 |
bool NeutronDetectorReader::haveData(const char data[], long int lenght){ |
bool NeutronDetectorReader::haveData(const char data[], long int lenght){ |
82 |
bool ret = false; |
bool ret = false; |
83 |
if (((data[lenght-1] && data[lenght - 5] && data[lenght - 9]) && 0x0F) && |
if (((data[lenght-1] && data[lenght - 5] && data[lenght - 9]) && 0x0F) && |