ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerSuperClusters.h
Revision: 1.11
Committed: Sat May 5 16:49:59 2012 UTC (12 years, 11 months ago) by paus
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_028, Mit_027a, Mit_027
Changes since 1.10: +31 -18 lines
Log Message:
Version 027 - complete version for ICHEP 2012.

File Contents

# User Rev Content
1 sixie 1.1 //--------------------------------------------------------------------------------------------------
2 paus 1.11 // $Id: FillerSuperClusters.h,v 1.10 2010/06/25 15:18:38 bendavid Exp $
3 sixie 1.1 //
4     // FillerSuperClusters
5     //
6 paus 1.11 // Implementation of a filler to fill EDM super clusters into our mithep::SuperCluster data
7     // structure.
8 sixie 1.1 //
9 paus 1.11 // Authors: C.Paus, J.Bendavid, S.Xie
10 sixie 1.1 //--------------------------------------------------------------------------------------------------
11    
12 loizides 1.2 #ifndef MITPROD_TREEFILLER_FILLERSUPERCLUSTERS_H
13     #define MITPROD_TREEFILLER_FILLERSUPERCLUSTERS_H
14 sixie 1.1
15 loizides 1.6 #include "MitAna/DataTree/interface/SuperClusterCol.h"
16     #include "MitProd/TreeFiller/interface/AssociationMaps.h"
17 sixie 1.1 #include "MitProd/TreeFiller/interface/BaseFiller.h"
18    
19 paus 1.11 class CaloGeometry;
20     class CaloSubdetectorTopology;
21     class EcalRecHit;
22    
23 sixie 1.1 namespace mithep
24     {
25     class FillerSuperClusters : public BaseFiller
26     {
27     public:
28     FillerSuperClusters(const edm::ParameterSet &cfg, const char *name, bool active=1);
29     ~FillerSuperClusters();
30    
31 paus 1.11 void BookDataBlock(TreeWriter &tws);
32     void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
33     const mithep::SuperClusterMap *GetSuperClusterMap() const { return superClusterMap_; }
34    
35     protected:
36     std::vector<float> getESHits(double X, double Y, double Z,
37     std::map<DetId, EcalRecHit> rechits_map,
38     const CaloGeometry& geometry,
39     CaloSubdetectorTopology *topology_p, int row);
40     std::vector<float> getESShape(std::vector<float> ESHits0);
41 sixie 1.1
42     private:
43 paus 1.11 std::string edmName_; //edm name of collection
44     std::string mitName_; //mit name of collection
45     std::string basicClusterMapName_; //name of imp. map wrt basic clus
46     std::string psClusterMapName_; //name of imp. map wrt ps clus
47     std::string caloTowerDetIdMapName_; //name of imp. map wrt caloTowerDetId
48     std::string superClusterMapName_; //name of exported map
49     std::string superClusterIdMapName_; //name of exported id map
50     std::string caloTowerName_; //name of calotower collection
51     const mithep::BasicClusterMap *basicClusterMap_; //map wrt basic clusters
52     const mithep::PsClusterMap *psClusterMap_; //map wrt preshower clusters
53 bendavid 1.10 const mithep::CaloTowerDetIdMap *caloTowerDetIdMap_; //map wrt calo tower det id's
54 paus 1.11 mithep::SuperClusterArr *superClusters_; //array of super clusters
55     mithep::SuperClusterMap *superClusterMap_; //map wrt super clusters
56     mithep::SuperClusterIdMap *superClusterIdMap_; //map of DetIds to superclusters
57 sixie 1.1 };
58     }
59     #endif