GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TXXXProc.cxx
Go to the documentation of this file.
1// $Id: TXXXProc.cxx 997 2013-07-17 14:50:09Z linev $
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#include "TXXXProc.h"
15
16#include "TH1.h"
17#include "TH2.h"
18
19#include "TGo4Log.h"
20#include "TGo4MbsEvent.h"
21#include "TGo4WinCond.h"
22#include "TGo4PolyCond.h"
23#include "TGo4Picture.h"
24
25//***********************************************************
28 fHandle()
29{
30}
31
32//***********************************************************
34{
35 TGo4Log::Info("TXXXProc: Delete instance");
36}
37
38//***********************************************************
39// this one is used in standard factory
40TXXXProc::TXXXProc(const char *name) :
42 fHandle()
43{
44 TGo4Log::Info("TXXXProc: Create instance");
45
46 for (int i = 0; i < 8; i++) {
47 TString hname = TString::Format("Crate1/Cr1Ch%02d", i + 1);
48 TString htitle = TString::Format("Crate 1 channel %2d", i+1);
49 fCr1Ch[i] = MakeTH1('I', hname.Data(), htitle.Data(), 5000, 1., 5001.);
50 hname = TString::Format("Crate2/Cr2Ch%02d",i+1);
51 htitle = TString::Format("Crate 2 channel %2d",i+1);
52 fCr2Ch[i] = MakeTH1('I', hname.Data(), htitle.Data(), 5000, 1., 5001.);
53 }
54
55 fCr1Ch1x2 = MakeTH2('I', "Cr1Ch1x2","Crate 1 channel 1x2", 200, 1., 5001., 200, 1., 5001.);
56 fHis1 = MakeTH1('I', "His1","Condition histogram", 5000, 1., 5001.);
57 fHis2 = MakeTH1('I', "His2","Condition histogram", 5000, 1., 5001.);
58 fHis1gate = MakeTH1('I', "His1g","Gated histogram", 5000, 1., 5001.);
59 fHis2gate = MakeTH1('I', "His2g","Gated histogram", 5000, 1., 5001.);
60 fHis3 = MakeTH1('I', "His3","Singular histogram", 20000, 0.999, 1.001);
61
62 fconHis1 = MakeWinCond("cHis1", 100,2000, "His1");
63 fconHis2 = MakeWinCond("cHis2", 100,2000, "His2");
64
65 Double_t cutpnts[3][2] = { {400, 800}, {700, 900}, {600, 1100} };
66 fPolyCon = MakePolyCond("polycon", 3, cutpnts);
67
68 fcondSet = GetPicture("condSet");
69 if (!fcondSet) {
70 // in the upper two pads, the condition limits can be set,
71 // in the lower two pads, the resulting histograms are shown
72 fcondSet = new TGo4Picture("condSet","Set conditions");
73 fcondSet->SetDivision(2,2);
74 fcondSet->Pic(0,0)->AddObject(fHis1);
75 fcondSet->Pic(0,1)->AddObject(fHis2);
76 fcondSet->Pic(0,0)->AddCondition(fconHis1);
77 fcondSet->Pic(0,1)->AddCondition(fconHis2);
78 fcondSet->Pic(1,0)->AddObject(fHis1gate);
79 fcondSet->Pic(1,1)->AddObject(fHis2gate);
80
81 fcondSet->Pic(1,0)->SetFillAtt(4, 1001); // solid
82 fcondSet->Pic(1,0)->SetLineAtt(4,1,1);
83 fcondSet->Pic(1,1)->SetFillAtt(9, 1001); // solid
84 fcondSet->Pic(1,1)->SetLineAtt(9,1,1);
85 AddPicture(fcondSet);
86 }
87
88 const char *mbsnode = "x86l-9";
89
90 fHandle = mbs::MonitorHandle::Connect(mbsnode);
91 if (!fHandle.null())
92 printf("Connect to MBS node %s\n", mbsnode);
93 else
94 printf("Fail to connect to MBS node %s\n", mbsnode);
95
96
97/*
98 // this is example of creating canvas, which can be observed in the gui" << std::endl;
99 TCanvas *mycan = new TCanvas("TestCanvas","Does this work?", 3);
100 std::cout << "Did Creating canvas " << std::endl;
101 mycan->Divide(2,2);
102 mycan->cd(1);
103 fHis1->Draw();
104 mycan->cd(2);
105 fHis2->Draw();
106 AddCanvas(mycan);
107
108*/
109}
110
111//-----------------------------------------------------------
112// event function
114{ // called by framework. We dont fill any output event here at all
115
116 if (!GetInputEvent() || (GetInputEvent()->IsA() != TGo4MbsEvent::Class())) {
117 std::cout << "TXXXProc: no input MBS event found!" << std::endl;
118 return kFALSE;
119 }
120
121 auto evnt = static_cast<TGo4MbsEvent *>(GetInputEvent());
122
123 if(evnt->GetTrigger() > 11) {
124 std::cout << "**** TXXXProc: Skip trigger event" << std::endl;
125 return kFALSE;
126 }
127 // first we fill the arrays fCrate1,2 with data from MBS source
128 // we have up to two subevents, crate 1 and 2
129 // Note that one has to loop over all subevents and select them by
130 // crate number: psubevt->GetSubcrate(),
131 // procid: psubevt->GetProcid(),
132 // and/or control: psubevt->GetControl()
133 // here we use only crate number
134
135 Float_t Crate1[8];
136 Float_t Crate2[8];
137 for(Int_t i = 0; i<8; i++) {
138 Crate1[i] = 0.;
139 Crate2[i] = 0.;
140 }
141
142 // uncomment this lines to update histogram on the gui periodically without activating monitoring
143 //static int cnt = 0;
144 // if ((cnt++ % 100000) == 0) SendObjectToGUI(fHis1);
145
146 evnt->ResetIterator();
147 while(auto psubevt = evnt->NextSubEvent()) { // loop over subevents
148 Int_t * pdata = psubevt->GetDataField();
149 Int_t lwords = psubevt->GetIntLen();
150 if(lwords > 8) lwords = 8; // take only first 8 lwords
151
152 if(psubevt->GetSubcrate() == 1)
153 for(Int_t i = 0; i<lwords; i++)
154 Crate1[i] = (Float_t)*pdata++;
155
156 if(psubevt->GetSubcrate() == 2)
157 for(Int_t i = 0; i<lwords; i++)
158 Crate2[i] = (Float_t)*pdata++;
159 }
160
161 // now we fill histograms from the arrays
162 for(Int_t i = 0; i<8; i++) {
163 fCr1Ch[i]->Fill(Crate1[i]);
164 fCr2Ch[i]->Fill(Crate2[i]);
165 }
166 Float_t value1 = Crate1[0];
167 Float_t value2 = Crate1[1];
168 fHis1->Fill(value1); // fill histograms without gate
169 fHis2->Fill(value2);
170 if(fconHis1->Test(value1))fHis1gate->Fill(value1); //fill histograms with gate
171 if(fconHis2->Test(value2))fHis2gate->Fill(value2);
172 if(fPolyCon->Test(value1,value2)) fCr1Ch1x2->Fill(value1,value2);
173 fHis3->Fill(1.);
174 return kTRUE;
175}
The abstract base class for the data elements of which the unpacked events (or detector structure dat...
Abstract event processor.
TGo4EventElement * GetInputEvent()
Access to external raw event which is set as association member.
static void Info(const char *text,...) GO4_PRINTF_ARGS
User shortcut for message with prio 1.
Definition TGo4Log.cxx:294
Picture cconfiguration in Go4.
Definition TGo4Picture.h:40
TH1 * fCr1Ch[8]
Definition TXXXProc.h:32
TH1 * fHis2
Definition TXXXProc.h:37
TGo4WinCond * fconHis1
Definition TXXXProc.h:39
TH1 * fHis3
Definition TXXXProc.h:45
Bool_t BuildEvent(TGo4EventElement *target) override
Fill the destination event dest.
Definition TXXXProc.cxx:163
virtual ~TXXXProc()
Definition TXXXProc.cxx:39
TH1 * fHis2gate
Definition TXXXProc.h:38
TGo4PolyCond * fPolyCon
Definition TXXXProc.h:41
TH2 * fCr1Ch1x2
Definition TXXXProc.h:34
TH1 * fCr2Ch[8]
Definition TXXXProc.h:33
TH1 * fHis1gate
Definition TXXXProc.h:36
TH1 * fHis1
Definition TXXXProc.h:35
TGo4WinCond * fconHis2
Definition TXXXProc.h:40