add the missing firmware
This commit is contained in:
parent
51ca791129
commit
0e614db437
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,6 +1,5 @@
|
|||
*.o
|
||||
*.log
|
||||
*.bin
|
||||
*.csv
|
||||
*.gch
|
||||
|
||||
|
@ -13,5 +12,3 @@ read-set
|
|||
*.cxx
|
||||
*.pcm
|
||||
pixieDAQ
|
||||
|
||||
script*
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
17
script.C
Normal file
17
script.C
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
|
||||
evtReader * evt = new evtReader("haha.evt");
|
||||
|
||||
evt->ScanNumberOfBlock();
|
||||
|
||||
int nData = evt->GetNumberOfBlock();
|
||||
|
||||
for( int i = 0; i < nData; i++){
|
||||
evt->ReadBlock();
|
||||
|
||||
int energy = evt->data->energy;
|
||||
ULong64_t time = evt->data->time;
|
||||
printf("%4d | %d | %lld\n", i, energy, time);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user