1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Nicola Galante 12/2004 <mailto:nicola.galante@pi.infn.it>
|
---|
19 | ! Author(s): Nicola Galante 12/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
20 | !
|
---|
21 | ! Copyright: MAGIC Software Development, 2004
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MTriggerPatternDecode
|
---|
28 | //
|
---|
29 | // Decodes the trigger pattern from MRawEvtData into MTriggerPattern.
|
---|
30 | //
|
---|
31 | // Input:
|
---|
32 | // MRawEvtData
|
---|
33 | //
|
---|
34 | // Output:
|
---|
35 | // MTriggerPattern
|
---|
36 | //
|
---|
37 | /////////////////////////////////////////////////////////////////////////////
|
---|
38 | #include "MTriggerPatternDecode.h"
|
---|
39 |
|
---|
40 | #include "MLog.h"
|
---|
41 | #include "MLogManip.h"
|
---|
42 |
|
---|
43 | #include "MParList.h"
|
---|
44 | #include "MRawEvtHeader.h"
|
---|
45 | #include "MTriggerPattern.h"
|
---|
46 |
|
---|
47 | ClassImp(MTriggerPatternDecode);
|
---|
48 |
|
---|
49 | using namespace std;
|
---|
50 |
|
---|
51 | // --------------------------------------------------------------------------
|
---|
52 | //
|
---|
53 | // Default constructor
|
---|
54 | //
|
---|
55 | MTriggerPatternDecode::MTriggerPatternDecode(const char *name, const char *title)
|
---|
56 | {
|
---|
57 | fName = name ? name : "MTriggerPatternDecode";
|
---|
58 | fTitle = title ? title : "Task to decode Trigger Pattern";
|
---|
59 | }
|
---|
60 |
|
---|
61 | // --------------------------------------------------------------------------
|
---|
62 | //
|
---|
63 | Int_t MTriggerPatternDecode::PreProcess(MParList *pList)
|
---|
64 | {
|
---|
65 | fEvtHeader = (MRawEvtHeader *)pList->FindObject("MRawEvtHeader");
|
---|
66 | if (!fEvtHeader)
|
---|
67 | {
|
---|
68 | *fLog << err << "MRawEvtHeader not found... abort." << endl;
|
---|
69 | return kFALSE;
|
---|
70 | }
|
---|
71 |
|
---|
72 | fPattern = (MTriggerPattern*)pList->FindCreateObj("MTriggerPattern");
|
---|
73 | if (!fPattern)
|
---|
74 | {
|
---|
75 | *fLog << err << "MRawEvtHeader not found... abort." << endl;
|
---|
76 | return kFALSE;
|
---|
77 | }
|
---|
78 |
|
---|
79 | return kTRUE;
|
---|
80 | }
|
---|
81 |
|
---|
82 | // --------------------------------------------------------------------------
|
---|
83 | //
|
---|
84 | Int_t MTriggerPatternDecode::Process()
|
---|
85 | {
|
---|
86 | UInt_t pattern = ~fEvtHeader->GetTriggerID();
|
---|
87 |
|
---|
88 | // The the trigger pattern is currently written with inverted bits,
|
---|
89 | // but in the future this could be changed. In this case the file version
|
---|
90 | // number of the raw-data format must be checked. It tells you the
|
---|
91 | // file format (meaning of the bits)
|
---|
92 | // If for some reason the file-format has not been correctly changed
|
---|
93 | // use the run-number to decide whether the bits must be inverted or not.
|
---|
94 |
|
---|
95 | // Trigger Pattern is a number of 16 bits, but if the machine
|
---|
96 | // is a 64 bits then the bit inversion the first 16 bits are set to 1,
|
---|
97 | // possibly giving problems with the filtering with the masks.
|
---|
98 | // Because UInt_t by definition is a 32 bit number on any
|
---|
99 | // machine (see root manual) no check is needed.
|
---|
100 | // The simplest workaround is:
|
---|
101 | // pattern &= 0xffffffff;
|
---|
102 |
|
---|
103 | // For the moment the meaning of the bits in
|
---|
104 | // MRawEvtHeader::GetTriggerID and in MTriggerPattern::fTriggerPattern
|
---|
105 | // are identical - this may change in the future! In this case
|
---|
106 | // the decoding HERE must be changed - NOT MTriggerPattern.
|
---|
107 | // If an enhancement of the information stored in MTriggerPattern
|
---|
108 | // is necessary ADD new variables! Don't change the meaning of the old
|
---|
109 | // ones!
|
---|
110 | fPattern->fPrescaled = pattern & 0xff;
|
---|
111 | fPattern->fUnprescaled = (pattern>>8) & 0xff;
|
---|
112 |
|
---|
113 | return kTRUE;
|
---|
114 | }
|
---|