Belle II Software  release-05-01-25
BeamPipeGeo.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Luka Santelj *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <ir/dbobjects/IRGeoBase.h>
14 #include <framework/gearbox/GearDir.h>
15 
16 namespace Belle2 {
25  class BeamPipeGeo: public IRGeoBase {
26 
27  public:
28 
32  BeamPipeGeo()
33  {}
34 
39  void initialize(const GearDir& content);
40 
41  private:
42 
43  ClassDef(BeamPipeGeo, 1);
45  };
46 
48 } // end namespace Belle2
Belle2::BeamPipeGeo::initialize
void initialize(const GearDir &content)
Initialze from the gearbox (xml file)
Definition: BeamPipeGeo.cc:17
Belle2::BeamPipeGeo::ClassDef
ClassDef(BeamPipeGeo, 1)
ClassDef.
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::GearDir
GearDir is the basic class used for accessing the parameter store.
Definition: GearDir.h:41
Belle2::BeamPipeGeo
Geometry parameters of BeamPipe.
Definition: BeamPipeGeo.h:33
Belle2::BeamPipeGeo::BeamPipeGeo
BeamPipeGeo()
Default constructor.
Definition: BeamPipeGeo.h:40