• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • File List
  • Globals

beamtime/cosy-jan12/go4/STS/TSTSAnalysis.cxx (r4864/r3159)

Go to the documentation of this file.
00001 
00002 
00003 #include "TSTSAnalysis.h"
00004 
00005 #include <stdlib.h>
00006 #include "TGo4Version.h"
00007 #if __GO4BUILDVERSION__ > 40502
00008 #include "go4iostream.h"
00009 #else
00010 #include "Riostream.h"
00011 #endif
00012 
00013 #include "Go4EventServer.h"
00014 #include "TGo4StepFactory.h"
00015 #include "TGo4AnalysisStep.h"
00016 #include "TGo4Version.h"
00017 
00018 
00019 
00020 //***********************************************************
00021 TSTSAnalysis::TSTSAnalysis()
00022 {
00023 }
00024 //***********************************************************
00025 
00026 // this constructor is called by go4analysis executable
00027 TSTSAnalysis::TSTSAnalysis(int argc, char** argv) :
00028    TGo4Analysis(argc, argv)
00029 {
00030    cout << "**** Create TSTSAnalysis name: " << argv[0] << endl;
00031 
00032    if (!TGo4Version::CheckVersion(__GO4BUILDVERSION__)) {
00033       cout << "****  Go4 version mismatch" << endl;
00034       exit(-1);
00035    }
00036 
00037    TGo4StepFactory* factory = new TGo4StepFactory("Factory");
00038    factory->DefEventProcessor("RocProc","TRocProc");// object name, class name
00039    factory->DefOutputEvent("RocEvent","TRocEvent"); // object name, class name
00040 
00041    Text_t lmdfile[512]; // source file
00042    sprintf(lmdfile,"%s/data/test.lmd",getenv("GO4SYS"));
00043    TGo4EventSourceParameter* sourcepar = new TGo4MbsFileParameter(lmdfile);
00044 
00045    TGo4FileStoreParameter* storepar = new TGo4FileStoreParameter(Form("%sOutput", argv[0]));
00046    storepar->SetOverwriteMode(kTRUE);
00047 
00048    TGo4AnalysisStep* step = new TGo4AnalysisStep("Unpack", factory, sourcepar, storepar);
00049 
00050    step->SetSourceEnabled(kTRUE);
00051    step->SetStoreEnabled(kFALSE);
00052    step->SetProcessEnabled(kTRUE);
00053    step->SetErrorStopEnabled(kTRUE);
00054 
00055    // Now the first analysis step is set up.
00056    // Other steps could be created here
00057    AddAnalysisStep(step);
00058 
00059 
00060    TGo4StepFactory* factory2 = new TGo4StepFactory("Factory2");
00061    factory2->DefEventProcessor("STSProc","TSTSProc");// object name, class name
00062    factory2->DefInputEvent("RocEvent","TRocEvent"); // object name, class name 
00063    factory2->DefOutputEvent("STSEvent","TSTSEvent"); // object name, class name
00064 
00065 
00066    TGo4AnalysisStep* step2 = new TGo4AnalysisStep("STS", factory2, 0, 0);
00067 
00068    step2->SetSourceEnabled(kFALSE);
00069    step2->SetStoreEnabled(kFALSE);
00070    step2->SetProcessEnabled(kTRUE);
00071    step2->SetErrorStopEnabled(kTRUE);
00072 
00073    AddAnalysisStep(step2);
00074 
00075 
00076    // uncomment following line to define custom passwords for analysis server
00077    // DefineServerPasswords("CernOct11admin", "CernOct11ctrl", "CernOct11view");
00078 
00079 }
00080 
00081 //***********************************************************
00082 TSTSAnalysis::~TSTSAnalysis()
00083 {
00084    cout << "**** TSTSAnalysis: Delete instance" << endl;
00085 }
00086 

Generated on Tue Dec 10 2013 04:52:18 for ROCsoft by  doxygen 1.7.1