1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#ifndef DCCTCCBLOCK_HH
#define DCCTCCBLOCK_HH
/*
*\ Class DCCTCCBlock
*
* Class responsible for the trigger primitives unpacking.
*
* \file DCCTCCBlock.h
*
*
* \author N. Almeida
*
*
*/
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <utility>
#include <DataFormats/EcalDigi/interface/EcalDigiCollections.h>
#include <DataFormats/EcalDigi/interface/EcalTriggerPrimitiveDigi.h>
#include <DataFormats/EcalDigi/interface/EcalPseudoStripInputDigi.h>
#include <DataFormats/EcalDigi/interface/EcalTriggerPrimitiveSample.h>
#include <DataFormats/EcalDetId/interface/EcalTrigTowerDetId.h>
#include "DCCDataBlockPrototype.h"
class DCCDataUnpacker;
class DCCTCCBlock : public DCCDataBlockPrototype {
public:
/**
Class constructor
*/
DCCTCCBlock(DCCDataUnpacker* u, EcalElectronicsMapper* m, DCCEventBlock* e, bool unpack);
virtual void addTriggerPrimitivesToCollection() {}
/**
Unpacks TCC data
*/
using DCCDataBlockPrototype::unpack;
int unpack(const uint64_t** data, unsigned int* dwToEnd, short tccChId = 0);
void display(std::ostream& o) override;
protected:
virtual bool checkTccIdAndNumbTTs() { return true; };
unsigned int tccId_;
unsigned int bx_;
unsigned int l1_;
unsigned int nTTs_;
unsigned int nTSamples_;
unsigned int expNumbTTs_;
unsigned int expTccId_;
unsigned int ps_;
EcalTriggerPrimitiveDigi* pTP_;
EcalPseudoStripInputDigi* pPS_;
std::unique_ptr<EcalTrigPrimDigiCollection>* tps_;
std::unique_ptr<EcalPSInputDigiCollection>* pss_;
};
#endif
|