]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/Shuttle.C
Updated version of the geometry
[u/mrichter/AliRoot.git] / SHUTTLE / Shuttle.C
1 Bool_t Shuttle(const char* param = "listen") {
2
3         // WARNING: if ldap is built with ssl support it may cause confilcts with the 
4         // AliEn interface. If this happens, grid storage activation must be done BEFORE 
5         // loading LDAP libraries!!!
6
7         gSystem->Load("libRLDAP.so");
8         gSystem->Load("libSHUTTLE");
9         gSystem->Load("$ROOTSYS/lib/libThread");
10         gSystem->Load("$ALICE_ROOT/SHUTTLE/test/libTest.so");
11
12 //      AliLog::SetGlobalDebugLevel(1);
13
14         // Setting local CDB and reference storage locations
15         AliShuttle::SetMainCDB("alien://user=aliprod?folder=colla/GridShuttleCDB");
16         AliShuttle::SetMainRefStorage("alien://user=aliprod?folder=colla/GridShuttleRefStorage");
17
18 //      AliShuttle::SetMainCDB("local://testLeakCDB");
19 //      AliShuttle::SetMainRefStorage("local://testLeakRef");
20
21         AliShuttle::SetLocalCDB("local://LocalShuttleCDB");
22         AliShuttle::SetLocalRefStorage("local://LocalShuttleRefStorage");
23
24         AliShuttle::SetProcessDCS(kFALSE);
25
26
27 //      AliCDBManager *man = AliCDBManager::Instance();
28 //      man->SetDefaultStorage("local://MainCDB");
29 //      man->SetDefaultStorage("alien://DBFolder=ShuttleMainCDB");
30
31
32         AliShuttleConfig config("pcalice290.cern.ch", 389, "o=alice,dc=cern,dc=ch");
33         config.SetProcessAll(kTRUE);
34         config.Print();
35
36         AliShuttleTrigger trigger(&config);
37
38         AliShuttle* shuttle = trigger.GetShuttle();
39
40         // Add here detectors preprocessor ...
41         TestTPCPreprocessor *tpcPrep = new TestTPCPreprocessor(shuttle);
42         TestITSPreprocessorSPD *spdPrep = new TestITSPreprocessorSPD(shuttle);
43         TestHMPIDPreprocessor *richPrep = new TestHMPIDPreprocessor(shuttle);
44         TestZDCPreprocessor *zdcPrep = new TestZDCPreprocessor(shuttle);
45
46         TString paramStr(param);
47         
48         if (paramStr.IsDigit() || paramStr == "-1") {
49                 Int_t run = paramStr.Atoi();
50                 trigger.Collect(run);
51         } else if (paramStr == "new") {
52                 Bool_t result = trigger.Collect();
53         } else if (paramStr == "listen") {
54                 trigger.Run();
55         } else {
56                 cout<<"Bad parameter: "<<param<<endl;
57                 cout<<"Parameter options: "<<endl;
58                 cout<<"<run> - collect data for the given run"<<endl;
59                 cout<<"new - collect data only for the new runs"<<endl;
60                 cout<<"listen - start listening for DAQ notification"<<endl;
61                 cout<<"<empty parameter> - the same as 'listen'"<<endl;
62         }
63
64         AliCDBManager::Destroy();
65 }
66
67