Changeset 437 in svn
- Timestamp:
- Jun 17, 2009, 10:59:38 PM (16 years ago)
- Location:
- trunk/Utilities/Hector/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/Hector/src/H_Aperture.cc
r281 r437 74 74 } 75 75 76 bool H_Aperture::isInside(const float x, const float y) const {76 bool H_Aperture::isInside(const float , const float ) const { 77 77 /// @param x, y are the (x,y) coordinates of the proton, in [m] 78 78 //cout << "aperture::isInside" << endl; -
trunk/Utilities/Hector/src/H_Drift.cc
r281 r437 43 43 } 44 44 45 void H_Drift::setMatrix(const float eloss, const float p_mass, const float p_charge) { 45 //void H_Drift::setMatrix(const float eloss, const float p_mass, const float p_charge) { 46 void H_Drift::setMatrix(const float , const float , const float ) { 46 47 element_mat = driftmat(element_length); 47 48 return ; -
trunk/Utilities/Hector/src/H_Marker.cc
r281 r437 39 39 } 40 40 41 void H_Marker::setMatrix(const float eloss, const float p_mass, const float p_charge) { 41 //void H_Marker::setMatrix(const float eloss, const float p_mass, const float p_charge) { 42 void H_Marker::setMatrix(const float , const float , const float ) { 42 43 element_mat = driftmat(0); 43 44 return ; -
trunk/Utilities/Hector/src/H_RecRPObject.cc
r400 r437 330 330 } 331 331 332 float H_RecRPObject::getE(int a) {332 float H_RecRPObject::getE(int ) { 333 333 // put for backward compatibility 334 334 if(energy==NOT_YET_COMPUTED) { computeAll(); }; -
trunk/Utilities/Hector/src/H_RectangularCollimator.cc
r281 r437 54 54 } 55 55 56 void H_RectangularCollimator::setMatrix(const float eloss, const float p_mass, const float p_charge) { 56 //void H_RectangularCollimator::setMatrix(const float eloss, const float p_mass, const float p_charge) { 57 void H_RectangularCollimator::setMatrix(const float , const float , const float ) { 57 58 element_mat = driftmat(element_length); 58 59 return ;
Note:
See TracChangeset
for help on using the changeset viewer.