File vectorfield.h
File List > code_source > templat > include > TempLat > lattice > field > collections > vectorfield.h
Go to the documentation of this file
#ifndef COSMOINTERFACE_3D_VECTORFIELD3D_H
#define COSMOINTERFACE_3D_VECTORFIELD3D_H
/* This file is part of TempLat, available at https://cosmolattice.github.io/templat .
Copyright 2021-2026 The TempLat authors, see AUTHORS.md.
Released under the MIT license, see LICENSE.md. */
// File info: Main contributor(s): Adrien Florio, Year: 2019
#include "TempLat/lattice/field/collections/fieldcollection.h"
#include "TempLat/lattice/algebra/helpers/getndim.h"
namespace TempLat
{
template <class Arg, bool flatAssign = false>
using VectorField = FieldCollection<Arg, GetNDim::get<Arg>(), flatAssign, 1>;
} // namespace TempLat
#endif