Difference between revisions of "Replacing the LH2 target with an NH3 target"

From New IAC Wiki
Jump to navigation Jump to search
 
Line 13: Line 13:
 
Links
 
Links
  
[[DV_RunGroupC_Moller|Back]]
+
[[DV_RunGroupC_Moller#Change_to_a_NH3_Target|Back]]

Latest revision as of 23:47, 29 March 2016

Replacing the LH2 target with an NH3 target in the ExN02DectectorConstruction.cc file

//Ammonia
G4Element* N = new G4Element("Nitrogen", "N", z=7., a=14.01*g/mole);
G4Element* H = new G4Element("Hydrogen","H",z=1.,a=1.01*g/mole);
G4Material* NH3 = new G4Material("Ammonia", density=0.86*g/cm3, ncomponents=2,kStateGas, temperature, pressure);
NH3->AddElement(N,natoms=1);
NH3->AddElement(H,natoms=3);

Links

Back