]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONChamberTrigger.cxx
Fixes for #73467: Corrupted MUON hits when using AliRoot with Root v5.27/05 and v5...
[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
3d1463c8 27//-----------------------------------------------------------------------------
85fec35d 28/// \class AliMUONChamberTrigger
29///
30/// Implementation of AliMUONChamber for the trigger
31///
c4ee792d 32/// \deprecated This class is to be deprecated.
85fec35d 33///
3d1463c8 34//-----------------------------------------------------------------------------
85fec35d 35
13985652 36/// \cond CLASSIMP
37ClassImp(AliMUONChamberTrigger)
38/// \endcond
39
a9e2aefa 40//-------------------------------------------
d81db581 41
03f221a7 42AliMUONChamberTrigger::AliMUONChamberTrigger()
b7ef3c96 43 : AliMUONChamber(),
44 fkGeomTransformer(0)
d81db581 45{
5398f946 46/// Default constructor
d81db581 47}
48
884a73f1 49//-------------------------------------------
50
5398f946 51AliMUONChamberTrigger:: ~AliMUONChamberTrigger()
52{
53/// Destructor
884a73f1 54}
55
56//-------------------------------------------
d81db581 57
b7ef3c96 58AliMUONChamberTrigger::AliMUONChamberTrigger(Int_t id,
59 const AliMUONGeometryTransformer* kGeometryTransformer)
60 : AliMUONChamber(id),
61 fkGeomTransformer(kGeometryTransformer)
a9e2aefa 62{
5398f946 63/// Constructor using chamber id
a9e2aefa 64}
65
a9e2aefa 66
67
68
03f221a7 69
70