]> git.uio.no Git - u/mrichter/AliRoot.git/blame - BCM/AliBCM.h
Xrootd verbosity switched on for AliAnalysisManager debug level >2
[u/mrichter/AliRoot.git] / BCM / AliBCM.h
CommitLineData
80165cad 1#ifndef ALIBCM_H
2#define ALIBCM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////////
9// Manager class for detector BCM //
10// andreas.morsch@cern.ch //
11////////////////////////////////////////////////
12
13#include "AliDetector.h"
beacb94a 14class AliLoader;
80165cad 15
16class AliBCM : public AliDetector {
17
18 public:
19 AliBCM();
20 AliBCM(const char *name, const char *title);
beacb94a 21 virtual ~AliBCM();
22 virtual void CreateGeometry();
23 virtual void CreateMaterials();
24 virtual void Init();
25 virtual void StepManager();
26 virtual void MakeBranch(Option_t* option);
27 virtual void SetTreeAddress();
28 virtual AliLoader* MakeLoader(const char* topfoldername);
80165cad 29
30 virtual Int_t IsVersion() const {return 0;}
31 private:
32 Int_t fVolId; // Volume Id of the sensor
33
34 ClassDef(AliBCM,1) // Manager for detector BCM
35};
36
37#endif