Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:07

0001 #ifndef CONDTOOLS_HCAL_PARSEHCALDETID_H_
0002 #define CONDTOOLS_HCAL_PARSEHCALDETID_H_
0003 
0004 #include <string>
0005 #include "DataFormats/HcalDetId/interface/HcalDetId.h"
0006 
0007 //
0008 // Construct HcalDetId from a line of text.
0009 // Return HcalDetId with rawId of 0 of the
0010 // text does not corrspond to a correct
0011 // detector id specification.
0012 //
0013 HcalDetId parseHcalDetId(const std::string& s);
0014 
0015 //
0016 // Return a human-readable name for the given subdetector
0017 //
0018 const char* hcalSubdetectorName(HcalSubdetector subdet);
0019 
0020 #endif  // CONDTOOLS_HCAL_PARSEHCALDETID_H_