ATLAS Offline Software
Loading...
Searching...
No Matches
ForwardTracker/ForwardTracker/ConfigData.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef FORWARDTRACKER_CONDIFGDATA_H
6#define FORWARDTRACKER_CONDIFGDATA_H
7
8#include <ostream>
9
10namespace ForwardTracker {
11
12 class ConfigData {
13 public:
14
15 std::string twissFile1;
16 std::string twissFile2;
17 double positionC1;
18 double positionC2;
19 double apertureC1;
20 double apertureC2;
21 double endMarker;
22
23 ConfigData();
24
25 std::string str() const;
26 };
27
28 std::ostream& operator<<(std::ostream&, const ConfigData&);
29}
30
31#endif
std::ostream & operator<<(std::ostream &, const Beamline &)