]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliGRPManager.h
Change the X and Y values stored by the VertexerZ from (0.,0.) which are the
[u/mrichter/AliRoot.git] / STEER / AliGRPManager.h
CommitLineData
10c2f85a 1#ifndef ALIGRPMANAGER_H
2#define ALIGRPMANAGER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6////////////////////////////////////////////////////////////////////////////
7// //
8// AliGRPManager class //
9// The class can be used in order to access and read the Global Run //
10// Parameters entry from OCDB. //
11// It has a methods to set the magnetic field instanton and return //
12// the run and event info objects. //
13// //
14// cvetan.cheshkov@cern.ch 15/06/2009 //
15////////////////////////////////////////////////////////////////////////////
16
17#include <TObject.h>
18
19class AliRunInfo;
20class AliGRPObject;
21
22class AliGRPManager: public TObject {
23public:
24 AliGRPManager();
25 virtual ~AliGRPManager();
26
27 const AliGRPObject* GetGRPData() const { return fGRPData; }
28
f6e611f0 29 void SetGRPEntry(AliGRPObject* source);
10c2f85a 30 Bool_t ReadGRPEntry();
31 Bool_t SetMagField();
32
33 AliRunInfo* GetRunInfo();
34
35private:
99c7d495 36
10c2f85a 37 AliGRPObject* fGRPData; // Data from the GRP/GRP/Data CDB folder
38
39 AliGRPManager(const AliGRPManager& man);
40 AliGRPManager& operator = (const AliGRPManager& man);
41
42 ClassDef(AliGRPManager, 0) // class for accessing GRP
43};
44
45#endif