]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - SHUTTLE/test/TestShuttle.C
removing unused classes: 1st prototype of TPC vertexer
[u/mrichter/AliRoot.git] / SHUTTLE / test / TestShuttle.C
... / ...
CommitLineData
1void TestShuttle() {
2
3 gSystem->Load("libSHUTTLE");
4 gSystem->Load("libRLDAP");
5 gSystem->Load("libTest");
6
7 AliLog::SetGlobalDebugLevel(1);
8
9 AliShuttleConfig config("pcalice290.cern.ch", 389, "o=alice,dc=cern,dc=ch");
10 config.Print();
11
12 AliShuttleTrigger trigger(&config);
13
14 AliShuttle* shuttle = trigger.GetShuttle();
15 TestITSPreprocessor *itsPrep = new AliITSPreprocessor("ITS",shuttle);
16
17 trigger.CollectNew();
18
19/* TTimeStamp currentTime;
20 shuttle.Process(1, currentTime.GetSec() - 18 * 3600,
21 currentTime.GetSec());*/
22}
23
24