CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_4/src/DataFormats/TrackerRecHit2D/src/ClusterRemovalInfo.cc

Go to the documentation of this file.
00001 #include "DataFormats/TrackerRecHit2D/interface/ClusterRemovalInfo.h"
00002     
00003 namespace reco {
00004     void ClusterRemovalInfo::swap(reco::ClusterRemovalInfo &other) {
00005         pixelProd_.swap(other.pixelProd_);
00006         stripProd_.swap(other.stripProd_);
00007         pixelNewProd_.swap(other.pixelNewProd_);
00008         stripNewProd_.swap(other.stripNewProd_);
00009         stripIndices_.swap(other.stripIndices_);
00010         pixelIndices_.swap(other.pixelIndices_);
00011     }
00012     void swap(reco::ClusterRemovalInfo &cri1, reco::ClusterRemovalInfo &cri2) {
00013         cri1.swap(cri2);
00014     }
00015 }