Skip to content
Snippets Groups Projects
Commit 5eab806c authored by Junpei Maeda's avatar Junpei Maeda Committed by Graeme Stewart
Browse files

See CL. Run-2 dead chamber is added. (TGC_Digitization-01-13-05)

	* add share/TGC_Digitization_2016deadChamber.dat
	  (9 chambers are dead, since Run-2 start, and we have no plan to recover.)
	  This is default for Run-2 (Run-3/4 is still no dead chamber).
	* Tagging TGC_Digitization-01-13-05


Former-commit-id: 78a80442a1c04d03ae249b80169c55448878ef93
parent c24d9ae8
No related branches found
No related tags found
No related merge requests found
42 3 9 1 # A03 M1 f2 E1 L1 HV OFF (since Run-1)
41 1 4 3 # A03 M1 f0 F L3 broken chamber since Run-1
44 4 27 1 # A08 M2 f0 E2 L1 HV OFF (since Run-1)
46 5 34 2 # A09 M3 f3 E1 L2 HV OFF (since Run-1)
42 3 46 2 # A12 M1 f3 E2 L2 HV OFF (since Run-1)
43 -1 5 1 # C03 M2 f2 F L1 HV OFF (since Run-1)
45 -1 5 1 # C03 M3 f2 F L1 HV OFF (since Run-1)
42 -4 21 2 # C06 M1 f2 E2 L2 HV OFF (since Run-1)
42 -2 40 1 # C11 M1 f1 E4 L1 HV OFF (since 2015)
...@@ -808,7 +808,8 @@ void TgcDigitMaker::readFileOfDeadChamber() { ...@@ -808,7 +808,8 @@ void TgcDigitMaker::readFileOfDeadChamber() {
// Find path to the TGC_Digitization_deadChamber.dat file // Find path to the TGC_Digitization_deadChamber.dat file
std::string fileName; std::string fileName;
if(m_runperiod == 1) fileName = "TGC_Digitization_deadChamber.dat"; if(m_runperiod == 1) fileName = "TGC_Digitization_deadChamber.dat";
else if(m_runperiod == 2) fileName = "TGC_Digitization_NOdeadChamber.dat"; else if(m_runperiod == 2) fileName = "TGC_Digitization_2016deadChamber.dat";
else if(m_runperiod == 3) fileName = "TGC_Digitization_NOdeadChamber.dat";
else { else {
msg(MSG::ERROR) << "Run Period " << m_runperiod << " is unexpected in TgcDigitMaker - using NOdeadChamber configuration." << endreq; msg(MSG::ERROR) << "Run Period " << m_runperiod << " is unexpected in TgcDigitMaker - using NOdeadChamber configuration." << endreq;
fileName = "TGC_Digitization_NOdeadChamber.dat"; fileName = "TGC_Digitization_NOdeadChamber.dat";
......
...@@ -115,8 +115,8 @@ StatusCode TgcDigitizationTool::initialize() ...@@ -115,8 +115,8 @@ StatusCode TgcDigitizationTool::initialize()
std::string configVal = (*atlasCommonRec)[0]->getString("CONFIG"); std::string configVal = (*atlasCommonRec)[0]->getString("CONFIG");
if(configVal=="RUN1") runperiod = 1; if(configVal=="RUN1") runperiod = 1;
else if(configVal=="RUN2") runperiod = 2; else if(configVal=="RUN2") runperiod = 2;
else if(configVal=="RUN3") runperiod = 2; // currently runperiod 2 means no masking => ok for upgrade else if(configVal=="RUN3") runperiod = 3; // currently runperiod 3 means no masking => ok for upgrade
else if(configVal=="RUN4") runperiod = 2; // currently runperiod 2 means no masking => ok for upgrade else if(configVal=="RUN4") runperiod = 3; // currently runperiod 3 means no masking => ok for upgrade
else { else {
ATH_MSG_FATAL("Unexpected value for geometry config read from the database: " << configVal); ATH_MSG_FATAL("Unexpected value for geometry config read from the database: " << configVal);
return StatusCode::FAILURE; return StatusCode::FAILURE;
......
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