Skip to content

Commit

Permalink
Merge pull request #90 from JeffersonLab/davidl_GetCDCNwires
Browse files Browse the repository at this point in the history
Fill in DGeometry::GetCDCNwires with values read off from HDDS.
  • Loading branch information
sdobbs authored Feb 1, 2019
2 parents 20fd5ed + 434224a commit a7c5b43
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion src/libraries/HDGEOMETRY/DGeometry.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,35 @@ bool DGeometry::GetCDCRmid(vector<double> &cdc_rmid) const
//---------------------------------
bool DGeometry::GetCDCNwires(vector<int> &cdc_nwires) const
{

cdc_nwires.push_back(42);
cdc_nwires.push_back(42);
cdc_nwires.push_back(54);
cdc_nwires.push_back(54);
cdc_nwires.push_back(66);
cdc_nwires.push_back(66);
cdc_nwires.push_back(80);
cdc_nwires.push_back(80);
cdc_nwires.push_back(93);
cdc_nwires.push_back(93);
cdc_nwires.push_back(106);
cdc_nwires.push_back(106);
cdc_nwires.push_back(123);
cdc_nwires.push_back(123);
cdc_nwires.push_back(135);
cdc_nwires.push_back(135);
cdc_nwires.push_back(146);
cdc_nwires.push_back(146);
cdc_nwires.push_back(158);
cdc_nwires.push_back(158);
cdc_nwires.push_back(170);
cdc_nwires.push_back(170);
cdc_nwires.push_back(182);
cdc_nwires.push_back(182);
cdc_nwires.push_back(197);
cdc_nwires.push_back(197);
cdc_nwires.push_back(209);
cdc_nwires.push_back(209);

return false;
}

Expand Down

0 comments on commit a7c5b43

Please sign in to comment.