Project
Loading...
Searching...
No Matches
Pipe.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#ifndef ALICE3_PASSIVE_PIPE_H
13#define ALICE3_PASSIVE_PIPE_H
14
15#include "Rtypes.h"
17
18namespace o2
19{
20namespace passive
21{
23{
24 public:
25 Alice3Pipe();
26 ~Alice3Pipe() override;
27 Alice3Pipe(const char* name,
28 const char* title = "Alice 3 Pipe",
29 const float pipeRIn = 0.f,
30 const float pipeThickness = 0.f,
31 const float a3ipLength = 0.f,
32 const float vacuumVesselRIn = 0.f,
33 const float vacuumVesselThickness = 0.f,
34 const float vacuumVesselASideLength = 0.f);
35
36 void ConstructGeometry() override;
37
39 FairModule* CloneModule() const override;
40
41 float getPipeRIn() const { return mPipeRIn; }
42 float getPipeRMax() const { return mPipeRIn + mPipeThick; }
43 float getPipeWidth() const { return mPipeThick; }
44 float getA3IPLength() const { return mA3IPLength; }
45
46 float getVacuumVesselRIn() const { return mVacuumVesselRIn; }
47 float getVacuumVesselRMax() const { return mVacuumVesselRIn + mVacuumVesselThick; }
48 float getVacuumVesselWidth() const { return mVacuumVesselThick; }
49 float getVacuumVesselLength() const { return mVacuumVesselASideLength; }
50
51 private:
52 void createMaterials();
53 Alice3Pipe(const Alice3Pipe& orig) = default;
54 Alice3Pipe& operator=(const Alice3Pipe&);
55
56 float mPipeRIn = 0.; // inner diameter of the pipe
57 float mPipeThick = 0.; // inner beam pipe section thickness
58 float mA3IPLength = 0.; // Length of A3IP
59
60 float mVacuumVesselRIn = 0.; // inner diameter of the vacuum vessel
61 float mVacuumVesselThick = 0.; // outer beam pipe section thickness
62 float mVacuumVesselASideLength = 0.; // Length of the A Side of the vacuum vessel around the IP
63
64 ClassDefOverride(Alice3Pipe, 1);
65};
66} // namespace passive
67} // namespace o2
68#endif
a common base class for passive modules - implementing generic functions
Definition PassiveBase.h:24
float getPipeWidth() const
Definition Pipe.h:43
float getVacuumVesselWidth() const
Definition Pipe.h:48
FairModule * CloneModule() const override
Clone this object (used in MT mode only)
Definition Pipe.cxx:155
float getPipeRIn() const
Definition Pipe.h:41
void ConstructGeometry() override
Definition Pipe.cxx:64
float getVacuumVesselRIn() const
Definition Pipe.h:46
float getA3IPLength() const
Definition Pipe.h:44
float getPipeRMax() const
Definition Pipe.h:42
float getVacuumVesselRMax() const
Definition Pipe.h:47
float getVacuumVesselLength() const
Definition Pipe.h:49
GLuint const GLchar * name
Definition glcorearb.h:781
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...