CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalTBReadout.h
Go to the documentation of this file.
1 #ifndef EcalTestBeamAlgos_EcalTBReadout_h
2 #define EcalTestBeamAlgos_EcalTBReadout_h
3 
4 /*
5  *
6  * $Id: EcalTBReadout.h,v 1.4 2010/12/20 23:24:14 heltsley Exp $
7  *
8  */
9 
10 #include <string>
11 #include <vector>
12 
19 
21 {
22  public:
23 
24  EcalTBReadout(const std::string theEcalTBInfoLabel);
26 
28  void setDetIds(const std::vector<DetId> & detIds) {theDetIds = &detIds;}
29 
31  void findTTlist( const int& crysId ,
32  const EcalTrigTowerConstituentsMap& etmap);
33 
35  void readOut( const EBDigiCollection& input ,
37  const EcalTrigTowerConstituentsMap& etmap ) ;
38 
40  void readOut( const EEDigiCollection& input ,
42  const EcalTrigTowerConstituentsMap& etmap ) ;
43 
46  const EcalTrigTowerConstituentsMap& theTTmap ,
47  const EBDigiCollection& input ,
49 
52  const EcalTrigTowerConstituentsMap& theTTmap ,
53  const EEDigiCollection& input ,
55 
56  private:
57 
59 
60  std::vector<EcalTrigTowerDetId> theTTlist_;
61 
62  static const int NCRYMATRIX = 7;
63 
64  const std::vector<DetId>* theDetIds;
65 
66  std::string ecalTBInfoLabel_;
67 };
68 
69 #endif
std::vector< EcalTrigTowerDetId > theTTlist_
Definition: EcalTBReadout.h:60
static const int NCRYMATRIX
Definition: EcalTBReadout.h:62
EcalTBReadout(const std::string theEcalTBInfoLabel)
Definition: EcalTBReadout.cc:8
void readOut(const EBDigiCollection &input, EBDigiCollection &output, const EcalTrigTowerConstituentsMap &etmap)
read only the digis from the selected TT
void performReadout(edm::Event &event, const EcalTrigTowerConstituentsMap &theTTmap, const EBDigiCollection &input, EBDigiCollection &output)
master function to be called once per event
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
void setDetIds(const std::vector< DetId > &detIds)
tell the readout which cells exist
Definition: EcalTBReadout.h:28
const std::vector< DetId > * theDetIds
Definition: EcalTBReadout.h:64
void findTTlist(const int &crysId, const EcalTrigTowerConstituentsMap &etmap)
search for the TT to be read
std::string ecalTBInfoLabel_
Definition: EcalTBReadout.h:66