]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/scripts/PatternRecs.C
.so cleanup: removed from gSystem->Load()
[u/mrichter/AliRoot.git] / FMD / scripts / PatternRecs.C
1 //____________________________________________________________________
2 //
3 // $Id$
4 //
5 // Draw hits in the specialised FMD event pattern 
6 //
7 /** Pattern hits 
8     @ingroup FMD_script
9  */
10 void
11 PatternRecs()
12 {
13   AliLog::SetModuleDebugLevel("FMD", 1);
14   AliCDBManager* cdb = AliCDBManager::Instance();
15   cdb->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
16   cdb->SetRun(0);
17   AliFMDParameters::Instance()->Init();
18   gSystem->Load("libFMDutil");
19   AliFMDPattern* d = new AliFMDPattern;
20   d->AddLoad(AliFMDInput::kRecPoints);
21   // d->AddLoad(AliFMDInput::kDigits);
22   // d->AddLoad(AliFMDInput::kKinematics);
23   d->Run();
24 }
25
26 //____________________________________________________________________
27 //
28 // EOF
29 //