]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/AliMUONTriggerGeometryBuilder.h
Write only detector coefficients from HLT (Raphaelle)
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerGeometryBuilder.h
... / ...
CommitLineData
1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4// $Id$
5// Revision of includes 07/05/2004
6//
7/// \ingroup sim
8/// \class AliMUONTriggerGeometryBuilder
9/// \brief MUON Trigger stations geometry construction class
10///
11/// \author Philippe Crochet (LPCCFd)
12
13#ifndef ALI_MUON_TRIGGER_GEOMETRY_BUILDER_H
14#define ALI_MUON_TRIGGER_GEOMETRY_BUILDER_H
15
16#include "AliMUONVGeometryBuilder.h"
17
18class AliMUON;
19
20class AliMUONTriggerGeometryBuilder : public AliMUONVGeometryBuilder
21{
22 public:
23 AliMUONTriggerGeometryBuilder(AliMUON* muon);
24 AliMUONTriggerGeometryBuilder();
25 virtual ~AliMUONTriggerGeometryBuilder();
26
27 // methods
28 virtual void CreateGeometry();
29 virtual void SetVolumes();
30 virtual void SetTransformations();
31 virtual void SetSensitiveVolumes();
32
33 /// Do not apply global transformation (geometry is defined in the new ALICE reference frame)
34 virtual bool ApplyGlobalTransformation() { return false; }
35
36 protected:
37
38 private:
39 /// Not implemented
40 AliMUONTriggerGeometryBuilder(const AliMUONTriggerGeometryBuilder& rhs);
41 /// Not implemented
42 AliMUONTriggerGeometryBuilder& operator = (const AliMUONTriggerGeometryBuilder& rhs);
43
44 AliMUON* fMUON; ///< the MUON detector class
45
46 ClassDef(AliMUONTriggerGeometryBuilder,1) // MUON Trigger stations geometry construction class
47};
48
49#endif //ALI_MUON_TRIGGER_GEOMETRY_BUILDER_H