GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TMeshB3AnlProc.cxx
Go to the documentation of this file.
1 // $Id$
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 "TMeshB3AnlProc.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4UserException.h"
18 
19 #include "TMeshRawEvent.h"
20 #include "TMeshB3OutputEvent.h"
21 #include "TMeshB3InputEvent.h"
22 
23 //***********************************************************
24 // this one is used in TXXXAnlFact
26  :TGo4EventProcessor(name)
27 {
28  TGo4Log::Info("TMeshB3AnlProc: Create");
29 }
30 
31 //***********************************************************
33  : TGo4EventProcessor("Processor3")
34 {
35 }
36 
37 //***********************************************************
39 {
40 }
41 
42 //-----------------------------------------------------------
44 {
45  if (!fxInput) {
46  // lazy init for input event from framework
47  TGo4EventElement *providerinput = GetInputEvent("Input3Provider");
48  TMeshRawEvent *raw = dynamic_cast<TMeshRawEvent *>(providerinput);
49  if (raw)
50  fxInput = &(raw->fxSub3);
51  // provider delivers full raw event, we use only our component
52  else
53  fxInput = dynamic_cast<TMeshB3InputEvent *>(providerinput);
54  // provider with partial io delivers just our component
55  }
56  if (fxInput) {
57  // do the processing here:
58  for (Int_t i = 0; i < 4; i++) {
59  poutevt->frData[i] = (Float_t)fxInput->fiCrate3[i];
60  }
61 
62  } else {
63  throw TGo4UserException(3, "Error: no input event for processor %s", GetName());
64  }
65 }
virtual ~TMeshB3AnlProc()
static void Info(const char *text,...) GO4_PRINTF_ARGS
Definition: TGo4Log.cxx:294
void Analysis(TMeshB3OutputEvent *target)
TMeshB3InputEvent * fxInput
TMeshB3InputEvent fxSub3
Definition: TMeshRawEvent.h:49
TGo4EventElement * GetInputEvent()