Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:40

0001 //-------------------------------------------------
0002 //
0003 //   Class: DTBtiTrigData.cpp
0004 //
0005 //   Description: DTBtiChip Trigger Data
0006 //
0007 //
0008 //   Author List:
0009 //   C. Grandi
0010 //   Modifications:
0011 //
0012 //
0013 //--------------------------------------------------
0014 
0015 //#include "Utilities/Configuration/interface/Architecture.h"
0016 
0017 //-----------------------
0018 // This Class's Header --
0019 //-----------------------
0020 #include "L1Trigger/DTBti/interface/DTBtiTrigData.h"
0021 
0022 //-------------------------------
0023 // Collaborating Class Headers --
0024 //-------------------------------
0025 
0026 //---------------
0027 // C++ Headers --
0028 //---------------
0029 #include <iostream>
0030 
0031 using namespace std;
0032 
0033 //--------------
0034 // Operations --
0035 //--------------
0036 
0037 void DTBtiTrigData::print() const {
0038   cout << "BTI Id="
0039        << " ( " << _btiid.wheel();
0040   cout << " , " << _btiid.station();
0041   cout << " , " << _btiid.sector();
0042   cout << " , " << _btiid.superlayer();
0043   cout << " # " << _btiid.bti();
0044   cout << " ) ";
0045   cout << ", K=" << K() << ", X=" << X() << ", equation=" << eq();
0046   cout << ", code=" << code();
0047   cout << " step= " << step();
0048   /*  cout << " strobe= " << Strobe();
0049   cout << " Keq values: " << Keq(0) << " " << Keq(1) << " " << Keq(2) << " " 
0050     << Keq(3) << " " << Keq(4) << " " << Keq(5) << endl;
0051 */
0052   cout << endl;
0053 }