]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/scripts/ShowMult.C
TPC ALTRO mapping class
[u/mrichter/AliRoot.git] / FMD / scripts / ShowMult.C
1 //
2 // $Id$
3 //
4 // Script to dump multiplicity information to std::cout. 
5 //
6 // Use the script `Compile.C' to compile this class using ACLic. 
7 //
8 #include <AliFMDMultStrip.h>
9 #include <AliFMDMultRegion.h>
10 #include <AliFMDInput.h>
11
12 class ShowMult : public AliFMDInputRecPoints
13 {
14 public:
15   ShowMult() {}
16   Bool_t ProcessStrip(AliFMDMultStrip* mult) 
17   {
18     mult->Print();
19     return kTRUE;
20   }
21   Bool_t ProcessRegion(AliFMDMultRegion* mult) 
22   {
23     mult->Print();
24     return kTRUE;
25   }
26 };
27
28 //____________________________________________________________________
29 //
30 // EOF
31 //