]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTest.h
Geometry framework classes were made independent from the rest of MUON and linked...
[u/mrichter/AliRoot.git] / MUON / AliMUONTest.h
CommitLineData
e118b27e 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4// $Id$
5//
6// Class AliMUONTest
7// -----------------
8// Class with functions for testing
9//
10// Author: Ivana Hrivnacova, IPN Orsay
11
12#ifndef ALI_MUON_TEST_H
13#define ALI_MUON_TEST_H
14
15#include <TObject.h>
16
17#include "AliDetector.h"
18#include "AliMUONData.h"
19#include "AliMUONChamber.h"
20
21class TVector;
22class TFile;
23class TTree;
24
25
26class AliMUONTest : public TObject
27{
28 public:
29 AliMUONTest(const TString& configMacro);
30 AliMUONTest();
31 virtual ~AliMUONTest();
32
33 // tests
34 void DetElemTransforms();
35 void PrintPadPositions1();
36 void PrintPadPositions2();
37
38 protected:
39 AliMUONTest(const AliMUONTest& rhs);
40 AliMUONTest& operator = (const AliMUONTest& rhs);
41
42 ClassDef(AliMUONTest,0) // MUON class for tests
43};
44
45#endif //ALI_MUON_TEST_H
46