MarlinTPC  1.2.0
AltroBlocksLib.h
1 /*
2  * AltroBlocksLib.hh
3  *
4  * Created on: Aug 2, 2011
5  * Author: caiazza
6  */
7 
8 #ifndef ALTROBLOCKSLIB_HH_
9 #define ALTROBLOCKSLIB_HH_
10 
11 //#define NDEBUG
12 #include <assert.h>
13 
14 //Standard C++ inclusion
15 #include <iostream>
16 #include <fstream>
17 #include <iterator>
18 #include <vector>
19 #include <exception>
20 #include <stdexcept>
21 #include <string.h>
22 #include <sstream>
23 
24 //ILCSOFT inclusions
25 #include "lcio.h"
26 #include "UTIL/LCTime.h"
27 #include "IO/LCWriter.h"
28 #include "IMPL/LCCollectionVec.h"
29 #include "IMPL/TrackerRawDataImpl.h"
30 #include "IMPL/LCEventImpl.h"
31 
32 //Specific headers of the Altro Blocks
33 #include "AltroBlock.hh"
34 #include "SORBlock.hh"
35 #include "EORBlock.hh"
36 #include "BOFBlock.hh"
37 #include "EOFBlock.hh"
38 #include "PORBlock.hh"
39 #include "CORBlock.hh"
40 #include "DataBlock.hh"
41 #include "RCUBlock.hh"
42 #include "EventBlock.hh"
43 
44 namespace A2Lconverter
45 {
46  const int VERSION_MAJOR = 2;
47  const int VERSION_MINOR = 0;
48  const int VERSION_PATCH = 1;
49 }
50 
51 
52 #endif /* ALTROBLOCKSLIB_HH_ */