]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSEventHeader.cxx
Example macro for the creation of tags (P.Christakoglou)
[u/mrichter/AliRoot.git] / ITS / AliITSEventHeader.cxx
1 #include "AliITSEventHeader.h"
2 ////////////////////////////////////////////////////
3 //  Base class to define                          //
4 //  ITS Event Header                              //
5 //                                                //
6 //  Origin: E. Crescio crescio@to.infn.it         //
7 //                                                //
8 ////////////////////////////////////////////////////
9
10 ClassImp(AliITSEventHeader)
11
12   
13 //_____________________________________________________________
14 AliITSEventHeader::AliITSEventHeader():AliDetectorEventHeader()
15 {
16   //
17   // Defaulst Constructor
18   //
19   
20   SetEventTypeSDD();
21   
22   for(Int_t idet=0;idet<3;idet++){
23     fL1TriggerType[idet]=0;
24     fOrbitNumber[idet]=0;
25     fBunchCross[idet]=0;
26     fBlockAttr[idet]=0;
27     fTriggerClass[idet]=0;
28     fStatusBits[idet]=0;
29     fMiniEvId[idet]=0;
30     fSubDet[idet]=0;
31     fVersion[idet]=0;
32     fJitterSDD=0;
33   }
34   
35   
36 }
37
38 //_____________________________________________________________
39 AliITSEventHeader::AliITSEventHeader(const char* name):AliDetectorEventHeader(name)
40 {
41   //
42   // Constructor
43   //
44   SetEventTypeSDD();
45   for(Int_t idet=0;idet<3;idet++){
46     fL1TriggerType[idet]=0;
47     fOrbitNumber[idet]=0;
48     fBunchCross[idet]=0;
49     fBlockAttr[idet]=0;
50     fTriggerClass[idet]=0;
51     fStatusBits[idet]=0;
52     fMiniEvId[idet]=0;
53     fSubDet[idet]=0;
54     fVersion[idet]=0;
55     fJitterSDD=-123;
56   }
57   
58
59 }
60
61
62
63
64