CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CastorDigiToRaw Class Reference

#include <CastorDigiToRaw.h>

Inheritance diagram for CastorDigiToRaw:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CastorDigiToRaw (const edm::ParameterSet &ps)
 
void produce (edm::StreamID, edm::Event &e, const edm::EventSetup &c) const override
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
bool wantsStreamLuminosityBlocks () const final
 
bool wantsStreamRuns () const final
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducerBase () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

const edm::InputTag castorTag_
 
const edm::EDGetTokenT< CastorDigiCollectiontok_input_
 
const edm::EDPutTokenT< FEDRawDataCollectiontok_put_
 
const bool usingctdc_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::global::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

CastorDigiToRaw is the EDProducer subclass which runs the Castor Unpack algorithm.

Author
Alan Campbell
Version
1st Version April 18, 2008

Definition at line 26 of file CastorDigiToRaw.h.

Constructor & Destructor Documentation

CastorDigiToRaw::CastorDigiToRaw ( const edm::ParameterSet ps)
explicit

Definition at line 15 of file CastorDigiToRaw.cc.

15  :
16  castorTag_(conf.getParameter<edm::InputTag>("CASTOR")),
17  usingctdc_(conf.getParameter<bool>("CastorCtdc")),
18  tok_input_(consumes<CastorDigiCollection>(castorTag_)),
19  tok_put_(produces<FEDRawDataCollection>())
20 {
21 }
const edm::EDGetTokenT< CastorDigiCollection > tok_input_
const bool usingctdc_
const edm::EDPutTokenT< FEDRawDataCollection > tok_put_
const edm::InputTag castorTag_

Member Function Documentation

void CastorDigiToRaw::produce ( edm::StreamID  ,
edm::Event e,
const edm::EventSetup c 
) const
override

Definition at line 24 of file CastorDigiToRaw.cc.

References castorDigitizer_cfi::castor, CastorCollections::castorCont, castorTag_, constexpr, edm::Event::emplace(), edm::EventID::event(), FEDRawDataCollection::FEDData(), edm::EventSetup::get(), edm::Event::getByToken(), CastorDbService::getCastorMapping(), edm::EventBase::id(), edm::InputTag::label(), FEDNumbering::MAXCASTORFEDID, FEDNumbering::MINCASTORFEDID, eostools::move(), CastorPacker::pack(), CastorCtdcPacker::pack(), edm::Handle< T >::product(), tok_input_, tok_put_, usingctdc_, and cms::Exception::what().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

25 {
26  CastorCollections colls;
27 
28  // Step A: Get Inputs
30  if (!castorTag_.label().empty()) {
31  e.getByToken(tok_input_,castor);
32  colls.castorCont=castor.product();
33  }
34  // get the mapping
36  es.get<CastorDbRecord>().get( pSetup );
37  const CastorElectronicsMap* readoutMap=pSetup->getCastorMapping();
38  // Step B: Create empty output
40 
41  constexpr int ifed_first=FEDNumbering::MINCASTORFEDID; //690
42  constexpr int ifed_last=FEDNumbering::MAXCASTORFEDID; //693
43 
44  int orbitN=e.id().event();
45  int bcnN=2000;
46 
47  // Step C: pack all requested FEDs
48  for (int ifed=ifed_first; ifed<=ifed_last; ++ifed) {
49  FEDRawData& fed = raw.FEDData(ifed);
50  try {
51  if ( usingctdc_ ) {
52  CastorCtdcPacker::pack(ifed,ifed-ifed_first, e.id().event(),
53  orbitN, bcnN, colls, *readoutMap, fed);
54  } else {
55  CastorPacker::pack(ifed,ifed-ifed_first, e.id().event(),
56  orbitN, bcnN, colls, *readoutMap, fed);
57  }
58  } catch (cms::Exception& e) {
59  edm::LogWarning("Unpacking error") << e.what();
60  } catch (...) {
61  edm::LogWarning("Unpacking exception");
62  }
63  }
64 
65  e.emplace(tok_put_,std::move(raw));
66 }
EventNumber_t event() const
Definition: EventID.h:41
const edm::EDGetTokenT< CastorDigiCollection > tok_input_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
char const * what() const override
Definition: Exception.cc:103
const CastorDigiCollection * castorCont
static void pack(int fedid, int dccnumber, int nl1a, int orbitn, int bcn, const CastorCollections &inputs, const CastorElectronicsMap &emap, FEDRawData &output)
const bool usingctdc_
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
const CastorElectronicsMap * getCastorMapping() const
const edm::EDPutTokenT< FEDRawDataCollection > tok_put_
T const * product() const
Definition: Handle.h:74
static void pack(int fedid, int dccnumber, int nl1a, int orbitn, int bcn, const CastorCollections &inputs, const CastorElectronicsMap &emap, FEDRawData &output)
Definition: CastorPacker.cc:38
const edm::InputTag castorTag_
std::string const & label() const
Definition: InputTag.h:36
edm::EventID id() const
Definition: EventBase.h:59
def move(src, dest)
Definition: eostools.py:511
#define constexpr

Member Data Documentation

const edm::InputTag CastorDigiToRaw::castorTag_
private

Definition at line 33 of file CastorDigiToRaw.h.

Referenced by produce().

const edm::EDGetTokenT<CastorDigiCollection> CastorDigiToRaw::tok_input_
private

Definition at line 35 of file CastorDigiToRaw.h.

Referenced by produce().

const edm::EDPutTokenT<FEDRawDataCollection> CastorDigiToRaw::tok_put_
private

Definition at line 36 of file CastorDigiToRaw.h.

Referenced by produce().

const bool CastorDigiToRaw::usingctdc_
private

Definition at line 34 of file CastorDigiToRaw.h.

Referenced by produce().