ATLAS Offline Software
Loading...
Searching...
No Matches
ForwardTracker/src/CollimatorData.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
8
9#include <sstream>
10
11namespace ForwardTracker {
12
14 coll_z(std::vector<std::vector<double> >(coll_n, std::vector<double>(coll_n))),
15 coll_a(std::vector<std::vector<double> >(coll_n, std::vector<double>(coll_n))) {
16
17 coll_z[beam1][0] = cData.positionC1;
18 coll_z[beam1][1] = cData.positionC2;
19 coll_z[beam2][0] = cData.positionC1;
20 coll_z[beam2][1] = cData.positionC2;
21
22 coll_a[beam1][0] = cData.apertureC1;
23 coll_a[beam1][1] = cData.apertureC2;
24 coll_a[beam2][0] = cData.apertureC1;
25 coll_a[beam2][1] = cData.apertureC2;
26 }
27}
STL namespace.