]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerGeometryBuilder.h
Coding conventions (Yu.Kharlov)
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerGeometryBuilder.h
CommitLineData
30178c30 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
d1cd2474 4// $Id$
30178c30 5// Revision of includes 07/05/2004
d1cd2474 6//
692de412 7/// \ingroup base
8/// \class AliMUONTriggerGeometryBuilder
9/// \brief MUON Trigger stations geometry construction class
10///
11/// Author: Philippe Crochette, LPC Clermont-Ferrand
d1cd2474 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);
d1cd2474 24 AliMUONTriggerGeometryBuilder();
25 virtual ~AliMUONTriggerGeometryBuilder();
d1cd2474 26
27 // methods
28 virtual void CreateGeometry();
29 virtual void SetTransformations();
30 virtual void SetSensitiveVolumes();
067866a3 31 virtual bool ApplyGlobalTransformation() { return false; }
d1cd2474 32
30178c30 33 protected:
34 AliMUONTriggerGeometryBuilder(const AliMUONTriggerGeometryBuilder& rhs);
35
36 // operators
37 AliMUONTriggerGeometryBuilder& operator = (const AliMUONTriggerGeometryBuilder& rhs);
38
d1cd2474 39 private:
40 AliMUON* fMUON; // the MUON detector class
41
692de412 42 ClassDef(AliMUONTriggerGeometryBuilder,1) // MUON Trigger stations geometry construction class
d1cd2474 43};
44
45#endif //ALI_MUON_TRIGGER_GEOMETRY_BUILDER_H