Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13

#ifndef L1CALOCOLLECTIONS_H
#define L1CALOCOLLECTIONS_H

#include <vector>

#include "DataFormats/L1CaloTrigger/interface/L1CaloEmCand.h"
#include "DataFormats/L1CaloTrigger/interface/L1CaloRegion.h"

typedef std::vector<L1CaloEmCand> L1CaloEmCollection;
typedef std::vector<L1CaloRegion> L1CaloRegionCollection;

#endif