CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/DataFormats/MuonDetId/src/DTSectCollId.cc

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00003 //   Class: DTSectCollId.cc
00004 //
00005 //   Description: Definition of sector collectors
00006 //
00007 //
00008 //   Author List:
00009 //   S. Marcellini
00010 //   Modifications:
00011 //   11/12/06 C.Battilana : new SectCollId definitions 
00012 //
00013 //
00014 //--------------------------------------------------
00015 
00016 
00017 //-----------------------
00018 // This Class's Header --
00019 //-----------------------
00020 #include "DataFormats/MuonDetId/interface/DTSectCollId.h"
00021 
00022 //-------------------------------
00023 // Collaborating Class Headers --
00024 //-------------------------------
00025 
00026 
00027 //---------------
00028 // C++ Headers --
00029 //---------------
00030 
00031 
00032 
00033 #include <iostream>
00034 std::ostream& operator<<(std::ostream &os, const DTSectCollId& id){
00035   os << "Wheel: "   << id.wheel() 
00036      << " Sector: " << id.sector();
00037   return os;
00038 }
00039 
00040