7 #include "UCTGeometry.hh" 8 #include "UCTLogging.hh" 10 UCTCrate::UCTCrate(uint32_t crt,
int fwv) :
15 for(uint32_t card = 0; card < g.getNCards(); card++) {
16 cards.push_back(
new UCTCard(crate, card,
fwVersion));
20 UCTCrate::~UCTCrate() {
21 for(uint32_t
i = 0;
i < cards.size();
i++) {
22 if(cards[
i] != 0)
delete cards[
i];
28 for(uint32_t
i = 0;
i < cards.size();
i++) {
31 crateSummary += cards[
i]->et();
37 bool UCTCrate::clearEvent() {
39 for(uint32_t
i = 0;
i < cards.size();
i++) {
40 if(!cards[
i]->clearEvent())
return false;
45 bool UCTCrate::setECALData(UCTTowerIndex
t,
bool ecalFG, uint32_t ecalET) {
47 uint32_t
i = g.getCard(t.first, t.second);
48 if(i > cards.size()) {
49 LOG_ERROR <<
"UCTCrate: Incorrect (caloEta, caloPhi) -- bailing" << std::endl;
52 return cards[
i]->setECALData(t, ecalFG, ecalET);
55 bool UCTCrate::setHCALData(UCTTowerIndex t, uint32_t hcalFB, uint32_t hcalET) {
57 uint32_t i = g.getCard(t.first, t.second);
58 if(i > cards.size()) {
59 LOG_ERROR <<
"UCTCrate: Incorrect (caloEta, caloPhi) -- bailing" << std::endl;
62 return cards[
i]->setHCALData(t, hcalFB, hcalET);
65 const UCTCard* UCTCrate::getCard(UCTTowerIndex t)
const {
67 uint32_t i = g.getCard(t.first, t.second);
68 if(i > cards.size()) {
69 LOG_ERROR <<
"UCTCrate: Incorrect (caloEta, caloPhi) -- bailing" << std::endl;
75 std::ostream&
operator<<(std::ostream& os,
const UCTCrate& cr) {
76 if(cr.crateSummary > 0)
77 os <<
"UCTCrate: crate = " << cr.crate <<
"; Summary = " << cr.crateSummary << std::endl;
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
std::ostream & operator<<(std::ostream &os, const UCTCrate &cr)