]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/ITS/AliMeanVertexPreprocessorOffline.h
Moving PWG1 to PWGPP
[u/mrichter/AliRoot.git] / PWGPP / ITS / AliMeanVertexPreprocessorOffline.h
1 #ifndef ALI_MEANVERTEX_PREPROCESSOROFFLINE_H
2 #define ALI_MEANVERTEX_PREPRECESSOROFFLINE_H
3
4 /* Copyright(c) 1998-2011, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6  
7 /* $Id: AliMeanVertexPreprocessor.h $ */
8
9
10 // Mean vertex preprocessor. 
11 // Davide Caffarri
12 //
13 #include "TNamed.h"
14
15 class AliMeanVertexPreprocessorOffline: public TNamed 
16 {
17   public:
18         AliMeanVertexPreprocessorOffline();  
19         virtual ~AliMeanVertexPreprocessorOffline();
20
21         void  ProcessOutput(const char *filename, const char *dbString, Int_t runNb);
22
23
24   private:
25         AliMeanVertexPreprocessorOffline(const AliMeanVertexPreprocessorOffline & proc); // copy constructor    
26         AliMeanVertexPreprocessorOffline& operator=(const AliMeanVertexPreprocessorOffline&); //operator
27         
28
29         ClassDef(AliMeanVertexPreprocessorOffline, 1);
30 };
31
32 #endif