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.);
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);
62 fconHis1 = MakeWinCond(
"cHis1", 100,2000,
"His1");
63 fconHis2 = MakeWinCond(
"cHis2", 100,2000,
"His2");
65 Double_t cutpnts[3][2] = { {400, 800}, {700, 900}, {600, 1100} };
66 fPolyCon = MakePolyCond(
"polycon", 3, cutpnts);
68 fcondSet = GetPicture(
"condSet");
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);
81 fcondSet->Pic(1,0)->SetFillAtt(4, 1001);
82 fcondSet->Pic(1,0)->SetLineAtt(4,1,1);
83 fcondSet->Pic(1,1)->SetFillAtt(9, 1001);
84 fcondSet->Pic(1,1)->SetLineAtt(9,1,1);
88 const char *mbsnode =
"x86l-9";
90 fHandle = mbs::MonitorHandle::Connect(mbsnode);
92 printf(
"Connect to MBS node %s\n", mbsnode);
94 printf(
"Fail to connect to MBS node %s\n", mbsnode);
117 std::cout <<
"TXXXProc: no input MBS event found!" << std::endl;
123 if(evnt->GetTrigger() > 11) {
124 std::cout <<
"**** TXXXProc: Skip trigger event" << std::endl;
137 for(Int_t i = 0; i<8; i++) {
146 evnt->ResetIterator();
147 while(
auto psubevt = evnt->NextSubEvent()) {
148 Int_t * pdata = psubevt->GetDataField();
149 Int_t lwords = psubevt->GetIntLen();
150 if(lwords > 8) lwords = 8;
152 if(psubevt->GetSubcrate() == 1)
153 for(Int_t i = 0; i<lwords; i++)
154 Crate1[i] = (Float_t)*pdata++;
156 if(psubevt->GetSubcrate() == 2)
157 for(Int_t i = 0; i<lwords; i++)
158 Crate2[i] = (Float_t)*pdata++;
162 for(Int_t i = 0; i<8; i++) {
163 fCr1Ch[i]->Fill(Crate1[i]);
164 fCr2Ch[i]->Fill(Crate2[i]);
166 Float_t value1 = Crate1[0];
167 Float_t value2 = Crate1[1];
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.
Picture cconfiguration in Go4.
Bool_t BuildEvent(TGo4EventElement *target) override
Fill the destination event dest.