CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/L1Trigger/DTUtilities/src/DTGeomSupplier.cc

Go to the documentation of this file.
00001 #include "L1Trigger/DTUtilities/interface/DTGeomSupplier.h"
00002 #include <iostream>
00003 
00004 void DTGeomSupplier::print(const DTTrigData* trig) const {
00005   trig->print();
00006   std::cout << " Local (pos)(dir): " << localPosition(trig)
00007             << localDirection(trig) << std::endl;
00008   std::cout << " CMS (pos)(dir): " << CMSPosition(trig) 
00009             << CMSDirection(trig) << std::endl;
00010 }    
00011