ATLAS Offline Software
Loading...
Searching...
No Matches
LArGeoTB2004Options.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#include "GaudiKernel/ISvcLocator.h"
8#include "GaudiKernel/Bootstrap.h"
10
12{
13 SmartIF<StoreGateSvc> detStore{Gaudi::svcLocator()->service("DetectorStore")};
14 if (!detStore) {
15 std::cout << "LArGeoTB2004Options::saveMe ERROR Could not dynamic cast det store" << std::endl;
16 return;
17 }
18 if (!detStore->record(this,"LArGeoTB2004Options").isSuccess()) {
19 std::cout << "Can not record LArGeoTB2004Options" << std::endl;
20 }
21}
22
24{
25 std::cout << " *** *** This is the object of type LArGeoTB2004Options *** *** \n";
26 std::cout << " ** H1 Cryostat X Position = " << m_CryoXPosition << "\n *** *** \n";
27 std::cout << " ** H1 Table Y Position = " << m_TableYPosition << "\n *** *** \n";
28 std::cout << " ** Run1 = " << m_Run1 << "\n *** *** \n";
29 std::cout << " ** Emec = " << m_emec << "\n *** *** \n";
30 std::cout << " ** Hec = " << m_hec << "\n *** *** \n";
31 std::cout << " ** Fcal = " << m_fcal << "\n *** *** \n";
32 std::cout << " ** Coldnose = " << m_coldnose << "\n *** *** \n";
33 std::cout << " ** Print step = " << m_printstep << "\n *** *** \n";
34 std::cout << " ** Check primary = " << m_checkprim << "\n *** *** \n";
35 std::cout << " ** Check other = " << m_checkother << "\n *** *** \n";
36}