CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
CastorDigiToRaw Class Reference

#include <CastorDigiToRaw.h>

Inheritance diagram for CastorDigiToRaw:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CastorDigiToRaw (const edm::ParameterSet &ps)
 
virtual void produce (edm::Event &e, const edm::EventSetup &c)
 
virtual ~CastorDigiToRaw ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

edm::InputTag castorTag_
 
CastorCtdcPacker ctdcpacker_
 
CastorPacker packer_
 
edm::EDGetTokenT
< CastorDigiCollection
tok_input_
 
bool usingctdc_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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 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.

References castorTag_, and tok_input_.

15  :
16  castorTag_(conf.getParameter<edm::InputTag>("CASTOR")),
17  usingctdc_(conf.getParameter<bool>("CastorCtdc"))
18 
19 {
20  tok_input_ = consumes<CastorDigiCollection>(castorTag_);
21  produces<FEDRawDataCollection>();
22 }
edm::InputTag castorTag_
tuple conf
Definition: dbtoconf.py:185
edm::EDGetTokenT< CastorDigiCollection > tok_input_
CastorDigiToRaw::~CastorDigiToRaw ( )
virtual

Definition at line 25 of file CastorDigiToRaw.cc.

25 { }

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 28 of file CastorDigiToRaw.cc.

References CastorCollections::castorCont, castorTag_, ctdcpacker_, edm::EventID::event(), edm::EventSetup::get(), edm::Event::getByToken(), edm::EventBase::id(), edm::InputTag::label(), FEDNumbering::MAXCASTORFEDID, FEDNumbering::MINCASTORFEDID, CastorPacker::pack(), CastorCtdcPacker::pack(), packer_, edm::Handle< T >::product(), edm::Event::put(), tok_input_, usingctdc_, and cms::Exception::what().

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

29 {
30  CastorCollections colls;
31 
32  // Step A: Get Inputs
34  if (!castorTag_.label().empty()) {
35  e.getByToken(tok_input_,castor);
36  colls.castorCont=castor.product();
37  }
38  // get the mapping
40  es.get<CastorDbRecord>().get( pSetup );
41  const CastorElectronicsMap* readoutMap=pSetup->getCastorMapping();
42  // Step B: Create empty output
43  std::auto_ptr<FEDRawDataCollection> raw=std::auto_ptr<FEDRawDataCollection>(new FEDRawDataCollection());
44 
45  const int ifed_first=FEDNumbering::MINCASTORFEDID; //690
46  const int ifed_last=FEDNumbering::MAXCASTORFEDID; //693
47 
48  int orbitN=e.id().event();
49  int bcnN=2000;
50 
51  // Step C: pack all requested FEDs
52  for (int ifed=ifed_first; ifed<=ifed_last; ++ifed) {
53  FEDRawData& fed = raw->FEDData(ifed);
54  try {
55  if ( usingctdc_ ) {
56  ctdcpacker_.pack(ifed,ifed-ifed_first, e.id().event(),
57  orbitN, bcnN, colls, *readoutMap, fed);
58  } else {
59  packer_.pack(ifed,ifed-ifed_first, e.id().event(),
60  orbitN, bcnN, colls, *readoutMap, fed); }
61  } catch (cms::Exception& e) {
62  edm::LogWarning("Unpacking error") << e.what();
63  } catch (...) {
64  edm::LogWarning("Unpacking exception");
65  }
66  }
67 
68  e.put(raw);
69 }
virtual char const * what() const
Definition: Exception.cc:141
EventNumber_t event() const
Definition: EventID.h:41
CastorCtdcPacker ctdcpacker_
edm::InputTag castorTag_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:446
const CastorDigiCollection * castorCont
void pack(int fedid, int dccnumber, int nl1a, int orbitn, int bcn, const CastorCollections &inputs, const CastorElectronicsMap &emap, FEDRawData &output)
T const * product() const
Definition: Handle.h:81
void pack(int fedid, int dccnumber, int nl1a, int orbitn, int bcn, const CastorCollections &inputs, const CastorElectronicsMap &emap, FEDRawData &output)
Definition: CastorPacker.cc:36
edm::EDGetTokenT< CastorDigiCollection > tok_input_
std::string const & label() const
Definition: InputTag.h:42
edm::EventID id() const
Definition: EventBase.h:56
CastorPacker packer_

Member Data Documentation

edm::InputTag CastorDigiToRaw::castorTag_
private

Definition at line 36 of file CastorDigiToRaw.h.

Referenced by CastorDigiToRaw(), and produce().

CastorCtdcPacker CastorDigiToRaw::ctdcpacker_
private

Definition at line 35 of file CastorDigiToRaw.h.

Referenced by produce().

CastorPacker CastorDigiToRaw::packer_
private

Definition at line 34 of file CastorDigiToRaw.h.

Referenced by produce().

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

Definition at line 38 of file CastorDigiToRaw.h.

Referenced by CastorDigiToRaw(), and produce().

bool CastorDigiToRaw::usingctdc_
private

Definition at line 37 of file CastorDigiToRaw.h.

Referenced by produce().