Skip to content

Commit 4c4b4af

Browse files
committedSep 21, 2017
Clean code w.r.t comments
1 parent cbe90d4 commit 4c4b4af

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed
 

‎include/WCSimDetectorConstruction.hh

+3-2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ public:
7171
void Cylinder_60x74_20inchBandL_40perCent();
7272
void Cylinder_12inchHPD_15perCent();
7373
void SetHyperKGeometry();
74+
void SetHyperKWithODGeometry();
7475
void UpdateGeometry();
7576

7677

@@ -82,7 +83,7 @@ public:
8283
G4int GetMyConfiguration() {return myConfiguration;}
8384
G4double GetGeo_Dm(G4int);
8485
G4int GetTotalNumPmts() {return totalNumPMTs;}
85-
G4int GetTotalNumPmtsOD() {return totalNumPMTsOD;}
86+
G4int GetTotalNumODPmts() {return totalNumODPMTs;}
8687

8788
G4int GetPMT_QE_Method(){return PMT_QE_Method;}
8889
G4double GetwaterTank_Length() {return waterTank_Length;}
@@ -430,7 +431,7 @@ private:
430431
std::ofstream geoFile; // File for text output
431432

432433
G4int totalNumPMTs; // The number of PMTs for this configuration
433-
G4int totalNumPMTsOD; // The number of PMTs for this configuration
434+
G4int totalNumODPMTs; // The number of PMTs for this configuration
434435
G4double WCCylInfo[3]; // Info for the geometry tree: radius & length or mail box, length, width and depth
435436
G4double WCPMTSize; // Info for the geometry tree: pmt size
436437
G4ThreeVector WCOffset; // Info for the geometry tree: WC center offset

‎src/WCSimDetectorConfigs.cc

+26-2
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ void WCSimDetectorConstruction::SetHyperKGeometry()
219219
WCPMTName = PMT->GetPMTName();
220220
WCPMTExposeHeight = PMT->GetExposeHeight();
221221
WCPMTRadius = PMT->GetRadius();
222-
WCIDDiameter = 70.8/6.*m; // = 74m - 2*(60cm ID wall + 1m OD)
223-
WCIDHeight = 54.8/6.*m; // = 60m - 2*(60cm ID wall + 2m OD)
222+
WCIDDiameter = 70.8*m; // = 74m - 2*(60cm ID wall + 1m OD)
223+
WCIDHeight = 54.8*m; // = 60m - 2*(60cm ID wall + 2m OD)
224224
WCBarrelPMTOffset = WCPMTRadius; //offset from vertical
225225
WCPMTperCellHorizontal= 4;
226226
WCPMTperCellVertical = 3;
@@ -233,6 +233,30 @@ void WCSimDetectorConstruction::SetHyperKGeometry()
233233
WCBlackSheetThickness = 2.0*cm;
234234
WCAddGd = false;
235235

236+
}
237+
238+
void WCSimDetectorConstruction::SetHyperKWithODGeometry()
239+
{
240+
WCDetectorName = "HyperK";
241+
WCIDCollectionName = WCDetectorName +"-glassFaceWCPMT";
242+
WCSimPMTObject * PMT = CreatePMTObject("BoxandLine20inchHQE", WCIDCollectionName);
243+
WCPMTName = PMT->GetPMTName();
244+
WCPMTExposeHeight = PMT->GetExposeHeight();
245+
WCPMTRadius = PMT->GetRadius();
246+
WCIDDiameter = 70.8*m; // = 74m - 2*(60cm ID wall + 1m OD)
247+
WCIDHeight = 54.8*m; // = 60m - 2*(60cm ID wall + 2m OD)
248+
WCBarrelPMTOffset = WCPMTRadius; //offset from vertical
249+
WCPMTperCellHorizontal= 4;
250+
WCPMTperCellVertical = 3;
251+
WCPMTPercentCoverage = 40.0;
252+
WCBarrelNumPMTHorizontal = round(WCIDDiameter*sqrt(pi*WCPMTPercentCoverage)/(10.0*WCPMTRadius));
253+
WCBarrelNRings = round(((WCBarrelNumPMTHorizontal*((WCIDHeight-2*WCBarrelPMTOffset)/(pi*WCIDDiameter)))
254+
/WCPMTperCellVertical));
255+
WCCapPMTSpacing = (pi*WCIDDiameter/WCBarrelNumPMTHorizontal); // distance between centers of top and bottom pmts
256+
WCCapEdgeLimit = WCIDDiameter/2.0 - WCPMTRadius;
257+
WCBlackSheetThickness = 2.0*cm;
258+
WCAddGd = false;
259+
236260
////////////////////////////////////
237261
// OD Parameters --- Beta version //
238262
////////////////////////////////////

‎src/WCSimDetectorMessenger.cc

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ WCSimDetectorMessenger::WCSimDetectorMessenger(WCSimDetectorConstruction* WCSimD
2626
"Cylinder_60x74_20inchBandL_40perCent\n"
2727
"Cylinder_12inchHPD_15perCent\n"
2828
"HyperK\n"
29+
"HyperKWithOD\n"
2930
"EggShapedHyperK\n"
3031
"EggShapedHyperK_withHPD\n"
3132
);
@@ -39,6 +40,7 @@ WCSimDetectorMessenger::WCSimDetectorMessenger(WCSimDetectorConstruction* WCSimD
3940
"Cylinder_60x74_20inchBandL_40perCent "
4041
"Cylinder_12inchHPD_15perCent "
4142
"HyperK "
43+
"HyperKWithOD "
4244
"EggShapedHyperK "
4345
"EggShapedHyperK_withHPD "
4446
);
@@ -144,6 +146,8 @@ void WCSimDetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue)
144146
WCSimDetector->Cylinder_12inchHPD_15perCent();
145147
} else if ( newValue == "HyperK" ){
146148
WCSimDetector->SetHyperKGeometry();
149+
} else if ( newValue == "HyperKWithOD" ){
150+
WCSimDetector->SetHyperKWithODGeometry();
147151
} else if ( newValue == "EggShapedHyperK") {
148152
WCSimDetector->SetIsEggShapedHyperK(true);
149153
WCSimDetector->SetEggShapedHyperKGeometry();

0 commit comments

Comments
 (0)