]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONChamberTrigger.cxx
- Adding comment lines to class description needed for Root documentation
[u/mrichter/AliRoot.git] / MUON / AliMUONChamberTrigger.cxx
CommitLineData
a9e2aefa 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
88cb7938 16/* $Id$ */
a9e2aefa 17
090026bf 18#include <TMath.h>
19
a9e2aefa 20#include "AliMUONChamberTrigger.h"
a9e2aefa 21#include "AliMUONResponseTrigger.h"
76fa1113 22#include "AliMUONHit.h"
b7ef3c96 23#include "AliMUON.h"
b7ef3c96 24#include "AliMUONGeometryTransformer.h"
c4a97bcd 25#include "AliLog.h"
a9e2aefa 26
85fec35d 27///
28/// \class AliMUONChamberTrigger
29///
30/// Implementation of AliMUONChamber for the trigger
31///
c4ee792d 32/// \deprecated This class is to be deprecated.
85fec35d 33///
34
13985652 35/// \cond CLASSIMP
36ClassImp(AliMUONChamberTrigger)
37/// \endcond
38
a9e2aefa 39//-------------------------------------------
d81db581 40
03f221a7 41AliMUONChamberTrigger::AliMUONChamberTrigger()
b7ef3c96 42 : AliMUONChamber(),
43 fkGeomTransformer(0)
d81db581 44{
5398f946 45/// Default constructor
d81db581 46}
47
884a73f1 48//-------------------------------------------
49
5398f946 50AliMUONChamberTrigger:: ~AliMUONChamberTrigger()
51{
52/// Destructor
884a73f1 53}
54
55//-------------------------------------------
d81db581 56
b7ef3c96 57AliMUONChamberTrigger::AliMUONChamberTrigger(Int_t id,
58 const AliMUONGeometryTransformer* kGeometryTransformer)
59 : AliMUONChamber(id),
60 fkGeomTransformer(kGeometryTransformer)
a9e2aefa 61{
5398f946 62/// Constructor using chamber id
a9e2aefa 63}
64
a9e2aefa 65
66
67
03f221a7 68
69