]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/scripts/DisplayHits.C
New RAW I/O. I rolled my own, because I wasn't happy with the old
[u/mrichter/AliRoot.git] / FMD / scripts / DisplayHits.C
1 //____________________________________________________________________
2 //
3 // $Id$
4 //
5 // Draw hits in the specialised FMD event display 
6 //
7 void
8 DisplayHits()
9 {
10   AliCDBManager* cdb = AliCDBManager::Instance();
11   cdb->SetDefaultStorage("local://cdb");
12   gSystem->Load("libFMDutil.so");
13   AliFMDDisplay* d = new AliFMDDisplay;
14   d->AddLoad(AliFMDInput::kHits);
15   d->AddLoad(AliFMDInput::kKinematics);
16   d->Run();
17 }
18
19 //____________________________________________________________________
20 //
21 // EOF
22 //