]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONSt1Types.h
negative indexes allowed
[u/mrichter/AliRoot.git] / MUON / AliMUONSt1Types.h
1 #ifndef ALI_MUON_ST1_TYPES_H
2 #define ALI_MUON_ST1_TYPES_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 // AliMUONSt1Types
9 // ---------------
10 // System dependent types definitions for MUON Station1.
11 //
12 // Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
13 //
14
15 #include <string>
16 #include <map>
17 #include <vector>
18 #include <fstream>
19
20 #include "AliMUONSt1SpecialMotif.h"
21
22 class TString;
23 class AliMUONSt1ResponseParameter;
24
25 #ifdef __HP_aCC
26   typedef vector<Int_t>  IntVector;
27   typedef map<Int_t , AliMUONSt1SpecialMotif> TSpecialMap;
28   typedef map<string,AliMUONSt1ResponseParameter*> TParamsMap;
29   typedef map<string,TList*> TListMap;
30 #else
31   using std::string;
32   using std::vector;
33   using std::multimap;
34   using std::pair;
35
36   typedef std::vector<Int_t>  IntVector;
37   typedef std::map<Int_t , AliMUONSt1SpecialMotif> TSpecialMap;
38   typedef std::map<std::string,AliMUONSt1ResponseParameter*> TParamsMap;
39   typedef std::map<std::string,TList*> TListMap;
40 #endif
41
42 #endif //ALI_MUON_ST1_TYPES_H