Skip to content

Commit

Permalink
Revert "First commit: compiles and runs"
Browse files Browse the repository at this point in the history
This reverts commit aeba2b4.
Also reverts PR cms-sw#13630
This is because it was merged before combo PR was created for 81X
Boy I wish we didn't need to combo these...
  • Loading branch information
nsmith- committed Mar 22, 2016
1 parent 1032df4 commit 3b69e64
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 158 deletions.
Expand Up @@ -52,10 +52,7 @@

process.gtDigis.DaqGtFedId = cms.untracked.int32(813)

process.stage2UnpackPath = cms.Path(process.caloStage2Digis +
process.gmtStage2Digis +
process.emtfStage2Digis
)
process.stage2UnpackPath = cms.Path(process.caloStage2Digis+process.gmtStage2Digis)

process.l1tMonitorPath = cms.Path(process.l1tStage2online)

Expand Down
43 changes: 0 additions & 43 deletions DQM/L1TMonitor/interface/L1TStage2EMTF.h

This file was deleted.

9 changes: 0 additions & 9 deletions DQM/L1TMonitor/python/L1TStage2EMTF_cfi.py

This file was deleted.

8 changes: 3 additions & 5 deletions DQM/L1TMonitor/python/L1TStage2_cff.py
Expand Up @@ -2,14 +2,12 @@

from DQM.L1TMonitor.L1TStage2CaloLayer2_cfi import *
from DQM.L1TMonitor.L1TStage2mGMT_cfi import *
from DQM.L1TMonitor.L1TStage2EMTF_cfi import *


from EventFilter.L1TRawToDigi.caloStage2Digis_cfi import *
from EventFilter.L1TRawToDigi.gmtStage2Digis_cfi import *
from EventFilter.L1TRawToDigi.emtfStage2Digis_cfi import *

l1tStage2online = cms.Sequence(
l1tStage2CaloLayer2 +
l1tStage2mGMT +
l1tStage2Emtf
l1tStage2CaloLayer2+
l1tStage2mGMT
)
61 changes: 0 additions & 61 deletions DQM/L1TMonitor/src/L1TStage2EMTF.cc

This file was deleted.

3 changes: 0 additions & 3 deletions DQM/L1TMonitor/src/SealModule.cc
Expand Up @@ -35,9 +35,6 @@ DEFINE_FWK_MODULE(L1TStage2mGMT);
#include <DQM/L1TMonitor/interface/L1TStage2BMTF.h>
DEFINE_FWK_MODULE(L1TStage2BMTF);

#include <DQM/L1TMonitor/interface/L1TStage2EMTF.h>
DEFINE_FWK_MODULE(L1TStage2EMTF);

#include <DQM/L1TMonitor/interface/L1TGCT.h>
DEFINE_FWK_MODULE(L1TGCT);

Expand Down
42 changes: 21 additions & 21 deletions DataFormats/L1TMuon/interface/EMTFOutput.h
Expand Up @@ -50,27 +50,27 @@ namespace l1t {
void set_AMC13Trailer(emtf::AMC13Trailer bits) { AMC13Trailer = bits; hasAMC13Trailer = true; };
void set_dataword(uint64_t bits) { dataword = bits; };

const bool HasAMC13Header() const { return hasAMC13Header; };
const bool HasMTF7Header() const { return hasMTF7Header; };
const bool HasEventHeader() const { return hasEventHeader; };
const bool HasCounters() const { return hasCounters; };
const int NumSP() const { return numSP; };
const int NumRPC() const { return numRPC; };
const int NumME() const { return numME; };
const bool HasAMC13Trailer() const { return hasAMC13Trailer; };
const bool HasMTF7Trailer() const { return hasMTF7Trailer; };
const bool HasEventTrailer() const { return hasEventTrailer; };
const emtf::AMC13Header GetAMC13Header() const { return AMC13Header; };
const emtf::MTF7Header GetMTF7Header() const { return MTF7Header; };
const emtf::EventHeader GetEventHeader() const { return EventHeader; };
const emtf::Counters GetCounters() const { return Counters; };
const emtf::MECollection GetMECollection() const { return MECollection; };
const emtf::RPCCollection GetRPCCollection() const { return RPCCollection; };
const emtf::SPCollection GetSPCollection() const { return SPCollection; };
const emtf::EventTrailer GetEventTrailer() const { return EventTrailer; };
const emtf::MTF7Trailer GetMTF7Trailer() const { return MTF7Trailer; };
const emtf::AMC13Trailer GetAMC13Trailer() const { return AMC13Trailer; };
const uint64_t Dataword() const { return dataword; };
bool HasAMC13Header() { return hasAMC13Header; };
bool HasMTF7Header() { return hasMTF7Header; };
bool HasEventHeader() { return hasEventHeader; };
bool HasCounters() { return hasCounters; };
int NumSP() { return numSP; };
int NumRPC() { return numRPC; };
int NumME() { return numME; };
bool HasAMC13Trailer() { return hasAMC13Trailer; };
bool HasMTF7Trailer() { return hasMTF7Trailer; };
bool HasEventTrailer() { return hasEventTrailer; };
emtf::AMC13Header GetAMC13Header() { return AMC13Header; };
emtf::MTF7Header GetMTF7Header() { return MTF7Header; };
emtf::EventHeader GetEventHeader() { return EventHeader; };
emtf::Counters GetCounters() { return Counters; };
emtf::MECollection GetMECollection() { return MECollection; };
emtf::RPCCollection GetRPCCollection() { return RPCCollection; };
emtf::SPCollection GetSPCollection() { return SPCollection; };
emtf::EventTrailer GetEventTrailer() { return EventTrailer; };
emtf::MTF7Trailer GetMTF7Trailer() { return MTF7Trailer; };
emtf::AMC13Trailer GetAMC13Trailer() { return AMC13Trailer; };
const uint64_t Dataword() const { return dataword; };

private:
bool hasAMC13Header;
Expand Down
12 changes: 0 additions & 12 deletions EventFilter/L1TRawToDigi/python/emtfStage2Digis_cfi.py

This file was deleted.

0 comments on commit 3b69e64

Please sign in to comment.