Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:35

0001 /** \file
0002  *
0003  *  \author N. Amapane - CERN
0004  */
0005 
0006 #include "MagneticField/VolumeGeometry/interface/MagVolumeOutsideValidity.h"
0007 #include <sstream>
0008 
0009 MagVolumeOutsideValidity::MagVolumeOutsideValidity(MagVolume::LocalPoint l, MagVolume::LocalPoint u) throw()
0010     : lower_(l), upper_(u) {
0011   std::stringstream linestr;
0012   linestr << "Magnetic field requested outside of validity of the MagVolume: " << lower() << " - " << upper()
0013           << std::endl;
0014   m_message = linestr.str();
0015 }