CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2_patch1/src/L1Trigger/DTBti/src/DTBtiTrigData.cc

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00003 //   Class: DTBtiTrigData.cpp
00004 //
00005 //   Description: DTBtiChip Trigger Data
00006 //
00007 //
00008 //   Author List:
00009 //   C. Grandi
00010 //   Modifications: 
00011 //
00012 //
00013 //--------------------------------------------------
00014 
00015 //#include "Utilities/Configuration/interface/Architecture.h"
00016 
00017 //-----------------------
00018 // This Class's Header --
00019 //-----------------------
00020 #include "L1Trigger/DTBti/interface/DTBtiTrigData.h"
00021 
00022 //-------------------------------
00023 // Collaborating Class Headers --
00024 //-------------------------------
00025 
00026 //---------------
00027 // C++ Headers --
00028 //---------------
00029 #include <iostream>
00030 
00031 using namespace std;
00032 
00033 //--------------
00034 // Operations --
00035 //--------------
00036 
00037 void 
00038 DTBtiTrigData::print() const {
00039   cout << "BTI Id=" << " ( " << _btiid.wheel()      ;
00040   cout              << " , " << _btiid.station()    ;
00041   cout              << " , " << _btiid.sector()     ;
00042   cout              << " , " << _btiid.superlayer() ;
00043   cout              << " # " << _btiid.bti()        ;
00044   cout              << " ) " ;
00045   cout << ", K=" << K() << ", X=" << X() << ", equation=" << eq();
00046   cout << ", code=" << code();
00047   cout << " step= " << step();
00048 /*  cout << " strobe= " << Strobe();
00049   cout << " Keq values: " << Keq(0) << " " << Keq(1) << " " << Keq(2) << " " 
00050     << Keq(3) << " " << Keq(4) << " " << Keq(5) << endl;
00051 */
00052   cout << endl;
00053 }