Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:27:42

0001 // This file is part of the Acts project.
0002 //
0003 // Copyright (C) 2021 CERN for the benefit of the Acts project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
0008 
0009 #pragma once
0010 
0011 #include <string>
0012 
0013 namespace Acts {
0014 
0015 /// @struct jsonKey
0016 ///
0017 /// @brief store in a single place the different key used for the material
0018 /// mapping
0019 struct jsonKey {
0020   /// The name identification
0021   std::string namekey = "NAME";
0022   /// The bin key
0023   std::string binkey = "binUtility";
0024   /// The material key
0025   std::string materialkey = "material";
0026   /// The local to global transformation key
0027   std::string transfokeys = "transformation";
0028   /// The type key -> proto, else
0029   std::string typekey = "type";
0030   /// The data key
0031   std::string datakey = "data";
0032   /// The mapping key, add surface to mapping procedure if true
0033   std::string mapkey = "mapMaterial";
0034   /// The mapping type key, used to select the type od material mapping for the
0035   /// surface
0036   std::string maptype = "mappingType";
0037 };
0038 
0039 }  // namespace Acts