Skip to content
Snippets Groups Projects
Commit b29fa556 authored by Ignacio Aracena's avatar Ignacio Aracena Committed by Graeme Stewart
Browse files

add RUN3 and RUN4 (CSCcabling-00-00-15)

	* CSCcablingSvc.cxx : allow RUN3 and RUN4 geometries
	* CSCcabling-00-00-15

2014-12-04 Jochen Meyer <jomeyer@mail.cern.ch>
        * CSCcabling-00-00-14
        * fixing coverity defect 11990
parent 23f494fc
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,8 @@
// Author: Ketevi A. Assamagan - may 2007
CSCcablingSvc::CSCcablingSvc(const std::string& name, ISvcLocator* sl)
: ::AthService(name,sl), m_side(2), m_rod(16), m_max(32) {
: ::AthService(name,sl), m_side(2), m_rod(16), m_max(32),
m_log(0), m_debug(false), m_verbose(false) {
declareProperty("Run1Cabling", m_run1 = false);
}
......@@ -76,7 +77,7 @@ StatusCode CSCcablingSvc::initialize() {
std::string configVal = (*atlasCommonRec)[0]->getString("CONFIG");
if(configVal=="RUN1"){
m_run1 = true;
} else if(configVal=="RUN2") {
} else if(configVal=="RUN2" || configVal=="RUN3" || configVal=="RUN4") {
m_run1 = false;
} else {
ATH_MSG_FATAL("Unexpected value for geometry config read from the database: " << configVal);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment